acecalisto3 commited on
Commit
b2120ad
·
verified ·
1 Parent(s): 87c82b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -875,15 +875,15 @@ def create_ui(manager: IssueManager):
875
  with gr.Column(scale=3):
876
  gr.Markdown("### Open Issues")
877
  issue_list = gr.Dataframe(
878
- headers=["ID", "Title", "Severity", "Cluster"],
879
- datatype=["number", "str", "str", "str"], # Cluster ID shown as str
880
- interactive=True,
881
- height=500,
882
- wrap=True, # Wrap long titles
883
- elem_id="issue_list_df",
884
- overflow_row_behaviour='paginate', # Paginate if needed
885
- max_rows=20 # Show 20 rows per page
886
- )
887
  with gr.Column(scale=2, min_width=350):
888
  gr.Markdown("### Issue Severity")
889
  stats_plot = gr.Plot(elem_id="stats_plot")
 
875
  with gr.Column(scale=3):
876
  gr.Markdown("### Open Issues")
877
  issue_list = gr.Dataframe(
878
+ headers=["ID", "Title", "Severity", "Cluster"],
879
+ datatype=["number", "str", "str", "str"], # Cluster ID shown as str
880
+ interactive=True,
881
+ wrap=True, # Wrap long titles
882
+ elem_id="issue_list_df",
883
+ overflow_row_behaviour='paginate', # Paginate if needed
884
+ max_rows=20 # Show 20 rows per page
885
+ )
886
+
887
  with gr.Column(scale=2, min_width=350):
888
  gr.Markdown("### Issue Severity")
889
  stats_plot = gr.Plot(elem_id="stats_plot")