From 3eb233481871dfbcc204892d2019faff0b548a6e Mon Sep 17 00:00:00 2001 From: Owen Coogan Date: Tue, 5 Aug 2025 16:11:24 +0200 Subject: [PATCH 1/2] fix: added fix to resize filter panel --- addon/components/hyper-table-v2/column.hbs | 6 ++++- addon/components/hyper-table-v2/column.ts | 31 +++++++++++++++++++++- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/addon/components/hyper-table-v2/column.hbs b/addon/components/hyper-table-v2/column.hbs index f7f37880..a88b94ce 100644 --- a/addon/components/hyper-table-v2/column.hbs +++ b/addon/components/hyper-table-v2/column.hbs @@ -31,7 +31,11 @@ {{/if}} {{#if (and this.filteringComponent (eq @handler.tetherOn @column.definition.key))}} -
+
void; displayMoveIndicator: boolean; @@ -49,7 +52,7 @@ export default class HyperTableV2Column extends Component this.setDropdownHeight(); + window.addEventListener('resize', this.resizeHandler); + } + } + @action orderColumn(e: MouseEvent): void { e.stopPropagation(); @@ -102,8 +127,12 @@ export default class HyperTableV2Column extends Component Date: Tue, 5 Aug 2025 16:21:03 +0200 Subject: [PATCH 2/2] fix: removed forgotten comment --- addon/components/hyper-table-v2/column.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/components/hyper-table-v2/column.ts b/addon/components/hyper-table-v2/column.ts index d1faacc9..e58e4e5c 100644 --- a/addon/components/hyper-table-v2/column.ts +++ b/addon/components/hyper-table-v2/column.ts @@ -90,7 +90,7 @@ export default class HyperTableV2Column extends Component