jbilcke-hf HF Staff commited on
Commit
99d6382
·
1 Parent(s): 89bbef2
Files changed (1) hide show
  1. vms/ui/app_ui.py +2 -2
vms/ui/app_ui.py CHANGED
@@ -137,7 +137,7 @@ class AppUI:
137
  title="🎞️ Video Model Studio",
138
 
139
  # Let's hack Gradio!
140
- css="#component-8 > .tab-wrapper{ display: none; }") as app:
141
  self.app = app
142
 
143
 
@@ -152,7 +152,7 @@ class AppUI:
152
  # Main content area with tabs
153
  with gr.Column():
154
  # Main tabbed interface for switching between Project and Monitor views
155
- with gr.Tabs() as main_tabs:
156
  self.main_tabs = main_tabs
157
 
158
  # Project View Tab
 
137
  title="🎞️ Video Model Studio",
138
 
139
  # Let's hack Gradio!
140
+ css="#main-tabs > .tab-wrapper{ display: none; }") as app:
141
  self.app = app
142
 
143
 
 
152
  # Main content area with tabs
153
  with gr.Column():
154
  # Main tabbed interface for switching between Project and Monitor views
155
+ with gr.Tabs(elem_id="main-tabs") as main_tabs:
156
  self.main_tabs = main_tabs
157
 
158
  # Project View Tab