Pijush2023 commited on
Commit
14570fe
·
verified ·
1 Parent(s): 5c732dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -278,9 +278,9 @@ def clear_textbox():
278
 
279
  def show_map_if_details(choice, history):
280
  if choice == "Details":
281
- return update_map_with_response(history)
282
  else:
283
- return ""
284
 
285
  # Gradio Blocks interface
286
  with gr.Blocks(theme='rawrsor1/Everforest') as demo:
 
278
 
279
  def show_map_if_details(choice, history):
280
  if choice == "Details":
281
+ return gr.update(visible=True), update_map_with_response(history)
282
  else:
283
+ return gr.update(visible=False), ""
284
 
285
  # Gradio Blocks interface
286
  with gr.Blocks(theme='rawrsor1/Everforest') as demo: