diff --git a/app/search/templates/django-fbr.html b/app/search/templates/django-fbr.html
index f0eee2b..3373765 100644
--- a/app/search/templates/django-fbr.html
+++ b/app/search/templates/django-fbr.html
@@ -279,39 +279,32 @@
{% endif %}
{% else %}
{% if form.is_bound %}
- There are no matching results
-
- Improve your search results by:
-
-
- -
- removing filters
-
- -
- double-checking your spelling
-
- -
- using fewer keywords
-
- -
- searching for something less specific
-
-
- Related searches
-
- Try these related search terms.
-
-
+ There are no matching results
+ Improve your results by:
+
+ - removing filters
+ - double-checking your spelling
+ - using fewer keywords
+ - searching for something less specific
+
+
+
+
+ Help with searching
+
+
+
You can use:
+
+ - quotes for results that include a phrase. For example, "health and safety"
+ -
+ commas to see results that include any of your keywords. For example, lifting, equipment, machinery
+
+ -
+ + with no spaces to see results that include all your keywords. For example, asbestos+handling
+
+
+
+
{% endif %}
{% endif %}
diff --git a/react_front_end/src/App.js b/react_front_end/src/App.js
index 34ee515..6b0edcf 100644
--- a/react_front_end/src/App.js
+++ b/react_front_end/src/App.js
@@ -23,7 +23,7 @@ function App() {
const [sortQuery, setSortQuery] = useQueryParams("sort", ["recent"])
const [pageQuery, setPageQuery] = useQueryParams("page", [1])
- const [searchInput, setSearchInput] = useState(searchQuery[0]) // Set initial state to query parameter value
+ const [searchInput, setSearchInput] = useState(searchQuery[0] || "") // Set initial state to query parameter value
const [data, setData] = useState([])
const [isLoading, setIsLoading] = useState(true)
const [isSearchSubmitted, setIsSearchSubmitted] = useState(false)
diff --git a/react_front_end/src/components/NoResultsContent.js b/react_front_end/src/components/NoResultsContent.js
index b25563c..2623c0d 100644
--- a/react_front_end/src/components/NoResultsContent.js
+++ b/react_front_end/src/components/NoResultsContent.js
@@ -2,32 +2,31 @@ function NoResultsContent() {
return (
<>
There are no matching results
- Improve your search results by:
+ Improve your results by:
- removing filters
- double-checking your spelling
- using fewer keywords
- searching for something less specific
- Related searches
- Try these related search terms.
-
+
+
+
+ Help with searching
+
+
+
You can use:
+
+ - quotes for results that include a phrase. For example, "health and safety"
+ -
+ commas to see results that include any of your keywords. For example, lifting, equipment, machinery
+
+ -
+ + with no spaces to see results that include all your keywords. For example, asbestos+handling
+
+
+
+
>
)
}