Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -192,8 +192,8 @@ with gr.Blocks(js=js_func, css="""
|
|
192 |
choices=get_terrain_with_emoji(),
|
193 |
value="✨ All",
|
194 |
label="🏞️ Filter by Terrain"
|
195 |
-
)
|
196 |
|
|
|
197 |
visa_filter = gr.CheckboxGroup(
|
198 |
choices=["Has Digital Nomad Visa", "Visa Length ≥ 12 Months"],
|
199 |
label="🛂 Visa Requirements"
|
@@ -204,6 +204,7 @@ with gr.Blocks(js=js_func, css="""
|
|
204 |
label="✨ Special Features"
|
205 |
)
|
206 |
|
|
|
207 |
data_table = gr.Dataframe(
|
208 |
value=styled_df,
|
209 |
datatype=["str", "str", "str", "number", "number", "number", "str", "number", "number", "str", "str"],
|
|
|
192 |
choices=get_terrain_with_emoji(),
|
193 |
value="✨ All",
|
194 |
label="🏞️ Filter by Terrain"
|
|
|
195 |
|
196 |
+
with gr.Column(scale=1):
|
197 |
visa_filter = gr.CheckboxGroup(
|
198 |
choices=["Has Digital Nomad Visa", "Visa Length ≥ 12 Months"],
|
199 |
label="🛂 Visa Requirements"
|
|
|
204 |
label="✨ Special Features"
|
205 |
)
|
206 |
|
207 |
+
|
208 |
data_table = gr.Dataframe(
|
209 |
value=styled_df,
|
210 |
datatype=["str", "str", "str", "number", "number", "number", "str", "number", "number", "str", "str"],
|