kubapok commited on
Commit
8fb3bd7
Β·
verified Β·
1 Parent(s): 07ab39c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -8
app.py CHANGED
@@ -104,15 +104,25 @@ with main:
104
  gr.Markdown(ABOUT)
105
  gr.Markdown(DATASET_TABLE)
106
 
 
 
 
 
 
 
 
 
 
 
107
  with gr.Column():
108
- with gr.Accordion("πŸ“™ Citation", open=False):
109
- citation_button = gr.Textbox(
110
- value="TEST",
111
- label="TEST_LABEL",
112
- lines=20,
113
- elem_id="citation-button",
114
- show_copy_button=True,
115
- )
116
 
117
  if __name__ == "__main__":
118
  main.launch()
 
104
  gr.Markdown(ABOUT)
105
  gr.Markdown(DATASET_TABLE)
106
 
107
+ # with gr.Column():
108
+ # with gr.Accordion("πŸ“™ Citation", open=False):
109
+ # citation_button = gr.Textbox(
110
+ # value="TEST",
111
+ # label="TEST_LABEL",
112
+ # lines=20,
113
+ # elem_id="citation-button",
114
+ # show_copy_button=True,
115
+ # )
116
+
117
  with gr.Column():
118
+ with gr.Accordion("πŸ“™ Citation", open=False):
119
+ citation_button = gr.Textbox(
120
+ label=CITATION_LABEL,
121
+ value=CITATION_CONTENT,
122
+ lines=20,
123
+ elem_id="citation-button",
124
+ show_copy_button=True,
125
+ )
126
 
127
  if __name__ == "__main__":
128
  main.launch()