From 7dc33c78aa4152264cc6833437be9af9b8621867 Mon Sep 17 00:00:00 2001 From: Giulio Ganci Date: Mon, 18 Oct 2021 21:23:22 +0200 Subject: [PATCH] fix: regression during resize results table on filters change --- src/renderer/components/WorkspaceTabTable.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/components/WorkspaceTabTable.vue b/src/renderer/components/WorkspaceTabTable.vue index e4e9a9a2..84e6999f 100644 --- a/src/renderer/components/WorkspaceTabTable.vue +++ b/src/renderer/components/WorkspaceTabTable.vue @@ -439,6 +439,7 @@ export default { this.$refs.queryTable.downloadTable(format, this.table); }, onFilterChange (clausoles) { + this.resizeScroller(); if (clausoles.length === 0) this.isSearch = false; },