Skip to content
Snippets Groups Projects
Commit c1795a55 authored by juanf's avatar juanf
Browse files

SSDM-557: Search with less than 3 characters allowed with alert.

SVN: 32022
parent 20f3f93f
No related branches found
No related tags found
No related merge requests found
......@@ -413,7 +413,9 @@ function MainController(profile) {
this.lastSearchId = 0; //Used to discard search responses that don't pertain to the last search call.
this._showSearchPage = function(value) {
//Only search with at least 3 characters
if(value.length === 0) {
return;
}
this.lastSearchId++;
var localSearchId = this.lastSearchId;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment