thomasht86 commited on
Commit
23bf7ed
·
verified ·
1 Parent(s): 300f274

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. frontend/app.py +4 -4
frontend/app.py CHANGED
@@ -185,11 +185,11 @@ def Search(request, search_results=[]):
185
  Div(
186
  SearchBox(query_value=query_value, ranking_value=ranking_value),
187
  Div(
188
- LoadingMessage()
189
- if not search_results
190
- else SearchResult(search_results),
191
  id="search-results", # This will be replaced by the search results
192
- ),
 
 
193
  cls="grid",
194
  ),
195
  cls="grid",
 
185
  Div(
186
  SearchBox(query_value=query_value, ranking_value=ranking_value),
187
  Div(
188
+ LoadingMessage(),
 
 
189
  id="search-results", # This will be replaced by the search results
190
+ )
191
+ if not search_results
192
+ else SearchResult(search_results),
193
  cls="grid",
194
  ),
195
  cls="grid",