bradley6597
commited on
Commit
•
b784903
1
Parent(s):
a80c98c
Remove map extra info
Browse files
app.py
CHANGED
@@ -101,9 +101,7 @@ def search_index(search_text, sd, ks, sort_by, max_results, user_num, search_tit
|
|
101 |
|
102 |
output = [x for o in output for x in o if type(x) is not float]
|
103 |
load_more_visible = False
|
104 |
-
extra_info = ''
|
105 |
-
if 'map' in search_text:
|
106 |
-
extra_info = '<div id="mapBorder"><strong>If real-world maps are needed please check they are from the folder: Illustrations Now > Maps - Using the New Guidance (2024)</strong></div><br>'
|
107 |
if len(output) > 0:
|
108 |
|
109 |
output_df = (pd.DataFrame(output)
|
|
|
101 |
|
102 |
output = [x for o in output for x in o if type(x) is not float]
|
103 |
load_more_visible = False
|
104 |
+
extra_info = ''
|
|
|
|
|
105 |
if len(output) > 0:
|
106 |
|
107 |
output_df = (pd.DataFrame(output)
|