Skip to content

Commit

Permalink
MID-2623 is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Nov 11, 2015
1 parent d7ee348 commit b95b6ca
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -1056,7 +1056,10 @@ private ObjectQuery createTaskQuery() {
}

private void clearSearchPerformed(AjaxRequestTarget target) {
searchModel.setObject(new TasksSearchDto());
TasksSearchDto tasksSearchDto = new TasksSearchDto();
tasksSearchDto.setCategory(ALL_CATEGORIES);
tasksSearchDto.setStatus(TaskDtoExecutionStatusFilter.ALL);
searchModel.setObject(tasksSearchDto);

Table panel = getTaskTable();
DataTable table = panel.getDataTable();
Expand Down

0 comments on commit b95b6ca

Please sign in to comment.