(js) Fix second search with same attributes

This commit is contained in:
Francis Lachapelle 2016-01-18 15:37:27 -05:00
parent 5c4da276bf
commit 2e73b66e53

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;
};
}