Navid Arabi commited on
Commit
c1ac104
ยท
1 Parent(s): f7ef7d3

fix del btn

Browse files
Files changed (1) hide show
  1. components/dashboard_page.py +4 -2
components/dashboard_page.py CHANGED
@@ -52,8 +52,10 @@ class DashboardPage:
52
 
53
  # Combined row for Delete button and Jump controls
54
  with gr.Row(): # Removed style argument to fix TypeError
55
- # Delete button on the left
56
- self.btn_delete = gr.Button("๐Ÿ—‘๏ธ Delete Annotation & Clear Fields", min_width=260)
 
 
57
 
58
  # Spacer column to push jump controls to the right.
59
  # # This column will expand to fill available space.
 
52
 
53
  # Combined row for Delete button and Jump controls
54
  with gr.Row(): # Removed style argument to fix TypeError
55
+ with gr.Column(scale=1):
56
+ self.btn_delete = gr.Button("๐Ÿ—‘๏ธ Delete Annotation & Clear Fields")
57
+ with gr.Column(scale=2):
58
+ pass
59
 
60
  # Spacer column to push jump controls to the right.
61
  # # This column will expand to fill available space.