update length bugs
Browse files
app.py
CHANGED
|
@@ -153,7 +153,7 @@ with demo:
|
|
| 153 |
detailed_success_rate_table = gr.Dataframe(
|
| 154 |
value=detailed_success_rate_df,
|
| 155 |
wrap=True,
|
| 156 |
-
column_widths=[350, 120] + [(
|
| 157 |
)
|
| 158 |
|
| 159 |
with gr.TabItem("Action Counts - Detailed"):
|
|
|
|
| 153 |
detailed_success_rate_table = gr.Dataframe(
|
| 154 |
value=detailed_success_rate_df,
|
| 155 |
wrap=True,
|
| 156 |
+
column_widths=[350, 120] + [(150 + len(c)) for c in detailed_success_rate_df.columns[2:]],
|
| 157 |
)
|
| 158 |
|
| 159 |
with gr.TabItem("Action Counts - Detailed"):
|