Spaces:
Sleeping
Sleeping
refactor: prevent to modify ecg_id_output
Browse files
app.py
CHANGED
|
@@ -32,7 +32,7 @@ with gr.Blocks() as demo:
|
|
| 32 |
)
|
| 33 |
|
| 34 |
with gr.Row():
|
| 35 |
-
ecg_id_output = gr.Textbox(label="The selected ecg_id is")
|
| 36 |
|
| 37 |
with gr.Row():
|
| 38 |
ecg_viewer = gr.Image(interactive=False, label="The selected ecg is")
|
|
|
|
| 32 |
)
|
| 33 |
|
| 34 |
with gr.Row():
|
| 35 |
+
ecg_id_output = gr.Textbox(label="The selected ecg_id is", interactive=False)
|
| 36 |
|
| 37 |
with gr.Row():
|
| 38 |
ecg_viewer = gr.Image(interactive=False, label="The selected ecg is")
|