diff --git a/frontend/src/lib/components/grid/cell-header.svelte b/frontend/src/lib/components/grid/cell-header.svelte index ec1cfd6..e654e08 100644 --- a/frontend/src/lib/components/grid/cell-header.svelte +++ b/frontend/src/lib/components/grid/cell-header.svelte @@ -8,7 +8,8 @@ setRowHeight = () => {}, val, active, - direction = 'col' // New prop: 'col' for right-side drag, 'row' for bottom-side + direction = 'col', // New prop: 'col' for right-side drag, 'row' for bottom-side + resizeable = true }: { width?: string; height?: string; @@ -16,6 +17,7 @@ setRowHeight?: (height: string) => void; val: string; active: boolean; + resizeable?: boolean; direction?: 'col' | 'row'; } = $props(); @@ -66,27 +68,29 @@ {val} - + {#if resizeable} + + {/if}