Added help text for search.

main
Lasse Server 3 years ago
parent af2a48d352
commit 98a65a9b80
  1. 3
      app.py

@ -212,7 +212,8 @@ def main():
else:
placeholder = 'Skriv här'
search_for = st.text_input('Vad vill du söka efter?', placeholder=placeholder)
search_help = 'Du kan använda asterix (*), minus(-), citattecken ("") och OR.'
search_for = st.text_input('Vad vill du söka efter?', placeholder=placeholder, help=search_help)
if search_for == '' and params.q != '':
search_for = params.q[0]

Loading…
Cancel
Save