From 8fa49326a0b8d1dd95978960483787210c73787a Mon Sep 17 00:00:00 2001 From: Alexander Platov Date: Thu, 18 May 2023 19:29:11 -0700 Subject: [PATCH] USER-145: fixed FixedColumn (#3216) --- plugins/view-resources/src/components/FixedColumn.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/view-resources/src/components/FixedColumn.svelte b/plugins/view-resources/src/components/FixedColumn.svelte index 515c72c870..e02d11486e 100644 --- a/plugins/view-resources/src/components/FixedColumn.svelte +++ b/plugins/view-resources/src/components/FixedColumn.svelte @@ -33,6 +33,7 @@ prevKey = key cWidth = undefined } + if (cWidth && cWidth > ($fixedWidthStore[key] ?? 0)) $fixedWidthStore[key] = cWidth } })