Skip to content
Snippets Groups Projects
Commit c1c071e7 authored by srosse's avatar srosse
Browse files

no-jira: fix rs if autocompleter is disabled

parent 53f460fe
No related branches found
No related tags found
No related merge requests found
......@@ -235,9 +235,12 @@ public class UserSearchFlexiController extends FlexiAutoCompleterController {
}
}
@Override
protected String getSearchValue(UserRequest ureq) {
String searchValue = ureq.getParameter(autoCompleterContainer.getId(JSNAME_INPUTFIELD));
return searchValue;
if(autoCompleterContainer != null) {
return ureq.getParameter(autoCompleterContainer.getId(JSNAME_INPUTFIELD));
}
return null;
}
@Override
......
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