Workpam commited on
Commit
30495d3
·
verified ·
1 Parent(s): 8105141

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -624,7 +624,11 @@ with gr.Blocks(css=css) as demo:
624
  status = gr.Textbox(
625
  label="📣 Status", lines=18, interactive=False, elem_id="status-box"
626
  )
627
-
 
 
 
 
628
  with gr.Group(elem_classes="panel"):
629
  zip_download_btn = gr.Button("📦")
630
 
 
624
  status = gr.Textbox(
625
  label="📣 Status", lines=18, interactive=False, elem_id="status-box"
626
  )
627
+ workbook_upload.change(
628
+ fn=read_uploaded_workbook,
629
+ inputs=[workbook_upload],
630
+ outputs=[image_data_state, status]
631
+ )
632
  with gr.Group(elem_classes="panel"):
633
  zip_download_btn = gr.Button("📦")
634