(skipSorting)
| 153 | } |
| 154 | |
| 155 | _refresh(skipSorting) { |
| 156 | if (this.isOnFilter) { |
| 157 | if (this.filterObj !== null) this.filter(this.filterObj); |
| 158 | if (this.searchText !== null) this.search(this.searchText); |
| 159 | } |
| 160 | if (!skipSorting && this.sortList.length > 0) { |
| 161 | this.sort(); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | ignoreNonSelected() { |
| 166 | this.showOnlySelected = !this.showOnlySelected; |