awacke1 commited on
Commit
bdf505f
1 Parent(s): 1d86d97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -35,7 +35,10 @@ with gr.Blocks() as demo:
35
  csv_selector = gr.Dropdown(label="🏞️🏙️ Select CSV File 🗺️✈️", choices=csv_files)
36
 
37
  # Dataframe and map components
38
- data = gr.Dataframe(row_count=5, interactive=False)
 
 
 
39
  map_component = Folium(height=400)
40
 
41
  # Button to reload data and map
 
35
  csv_selector = gr.Dropdown(label="🏞️🏙️ Select CSV File 🗺️✈️", choices=csv_files)
36
 
37
  # Dataframe and map components
38
+ data = gr.Dataframe(
39
+ row_count=(5,'static'),
40
+ interactive=False
41
+ )
42
  map_component = Folium(height=400)
43
 
44
  # Button to reload data and map