Append filters instead of replacing value for users and categories dropdowns

This commit is contained in:
Frederic Guillot
2015-09-26 21:48:48 -04:00
parent 66514aa530
commit 58c74b80d2
5 changed files with 13 additions and 8 deletions

View File

@@ -136,7 +136,7 @@ class Board extends Base
}
$values = $this->request->getJson();
$this->userSession->setFilters($project_id, $values['search']);
$this->userSession->setFilters($project_id, empty($values['search']) ? '' : $values['search']);
$this->response->html($this->renderBoard($project_id));
}