You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ docs/volto:
62
62
@echo "Documentation of volto initialized."
63
63
64
64
.PHONY: deps
65
-
deps: bin/python docs/volto docs/plone.restapi docs/plone.api ## Create Python virtual environment, install requirements, initialize or update the volto, plone.restapi, and plone.api submodules, and finally create symlinks to the source files.
65
+
deps: bin/python docs/volto docs/plone.restapi docs/plone.api ## Create Python virtual environment, install requirements, initialize or update the volto, plone.restapi, and plone.api submodules, and finally create symlinks to the source files.
Copy file name to clipboardExpand all lines: docs/_static/searchtools.js
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -342,7 +342,10 @@ var Search = {
342
342
else{
343
343
Search.stopPulse();
344
344
Search.title.text(_('Search Results'));
345
-
if(!resultCount)
345
+
if(query===''){
346
+
Search.status.text(_('No query, no results.'));
347
+
}
348
+
elseif(!resultCount)
346
349
Search.status.text(_('Your search did not match any documents. Please make sure that all words are spelled correctly. Searching for multiple words only shows matches that contain all words.'));
347
350
else
348
351
Search.status.text(_('Found %s page(s) matching the search query.').replace('%s',resultCount));
0 commit comments