(js) Fix second search with same attributes

pull/188/head
Francis Lachapelle 2016-01-18 15:37:27 -05:00
parent 5c4da276bf
commit 2e73b66e53
1 changed files with 2 additions and 1 deletions

View File

@ -126,7 +126,8 @@
// Reset input field when cancelling the search
vm.cancelSearch = function() {
vm.searchText = "";
vm.previous = { searchText: '', searchField: '' };
vm.searchText = null;
};
}