fix gradio warning

pull/48/head
Vladimir Mandic 2023-10-06 12:28:25 -04:00
parent 2bb95beade
commit 2fd1fcd9d2
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ def create_ui(blocks: gr.Blocks = None):
with gr.Blocks(analytics_enabled = False) if standalone else blocks as system_info:
with gr.Row(elem_id = 'system_info'):
with gr.Tabs(elem_id = 'system_info_tabs', active = 0) if standalone else ui_system_tabs:
with gr.Tabs(elem_id = 'system_info_tabs') if standalone else ui_system_tabs:
with gr.TabItem('System Info'):
with gr.Row():
timestamp = gr.Textbox(value=data['timestamp'], label = '', elem_id = 'system_info_tab_last_update', container=False)