rgndgn commited on
Commit
a9af299
·
verified ·
1 Parent(s): cc181d3
Files changed (1) hide show
  1. gradio_app.py +6 -3
gradio_app.py CHANGED
@@ -197,9 +197,12 @@ with gr.Blocks() as demo:
197
  elem_id="hidden-upload" # Add an ID for CSS targeting
198
  )
199
 
200
- # Make all output components invisible
201
- with gr.Row(visible=False):
202
- model_url = gr.Textbox(label="Model URL")
 
 
 
203
 
204
  input_img.upload(
205
  fn=generate_and_process_3d,
 
197
  elem_id="hidden-upload" # Add an ID for CSS targeting
198
  )
199
 
200
+ # Make textbox visible but hide it with CSS
201
+ with gr.Row():
202
+ model_url = gr.Textbox(
203
+ label="Model URL",
204
+ elem_id="model-url-output" # Add this for CSS targeting
205
+ )
206
 
207
  input_img.upload(
208
  fn=generate_and_process_3d,