Anisha Bhatnagar commited on
Commit
410e0af
·
1 Parent(s): a57824a

debugging zoom failuer due to missing axis-ranges textbox

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -281,7 +281,15 @@ def app(share=False, use_cluster_feats=False):
281
  bg_authors_df = gr.State() # Holds the background authors DataFrame
282
  with gr.Row():
283
  with gr.Column(scale=3):
284
- axis_ranges = gr.Textbox(visible=False, elem_id="axis-ranges")
 
 
 
 
 
 
 
 
285
  plot = gr.Plot(
286
  label="Visualization",
287
  elem_id="feature-plot",
 
281
  bg_authors_df = gr.State() # Holds the background authors DataFrame
282
  with gr.Row():
283
  with gr.Column(scale=3):
284
+ # axis_ranges = gr.Textbox(visible=False, elem_id="axis-ranges")
285
+ axis_ranges = gr.Textbox(
286
+ visible=False,
287
+ elem_id="axis-ranges",
288
+ interactive=True,
289
+ show_label=False,
290
+ container=False,
291
+ value=""
292
+ )
293
  plot = gr.Plot(
294
  label="Visualization",
295
  elem_id="feature-plot",