Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -320,12 +320,12 @@ class DataViewerApp:
|
|
320 |
token_login = gr.Textbox(label="token")
|
321 |
|
322 |
login_button = gr.Button("Login")
|
323 |
-
with gr.Column(scale=1, visible=
|
324 |
with gr.Row(equal_height=False):
|
325 |
with gr.Tabs():
|
326 |
with gr.TabItem("Processing Data "):
|
327 |
self.data_Processing()
|
328 |
-
|
329 |
#demo.load(self.load_demo, [sesion_state], [login_panal,main_panel])
|
330 |
|
331 |
|
|
|
320 |
token_login = gr.Textbox(label="token")
|
321 |
|
322 |
login_button = gr.Button("Login")
|
323 |
+
with gr.Column(scale=1, visible=True) as main_panel:
|
324 |
with gr.Row(equal_height=False):
|
325 |
with gr.Tabs():
|
326 |
with gr.TabItem("Processing Data "):
|
327 |
self.data_Processing()
|
328 |
+
#login_button.click(self.login, inputs=[token_login], outputs=[login_panal,main_panel,sesion_state])
|
329 |
#demo.load(self.load_demo, [sesion_state], [login_panal,main_panel])
|
330 |
|
331 |
|