diff --git a/src/components/dialogs/searchDialog/SearchDialog.vue b/src/components/dialogs/searchDialog/SearchDialog.vue index 329b546..eddc10b 100644 --- a/src/components/dialogs/searchDialog/SearchDialog.vue +++ b/src/components/dialogs/searchDialog/SearchDialog.vue @@ -190,8 +190,8 @@ export default class SearchDialog extends HasTask { const response = await api.getSearchResults(responseId); const isStopped = response.status === "Stopped"; + this.grid.searchItems.splice(-1, 0, ...response.results.slice(this.grid.searchItems.length)) if (isStopped) { - this.grid.searchItems = this.grid.searchItems.concat(response.results); this.loading = false; }