Change persistence format for column width (#1944)

This commit is contained in:
Laurent Nguyen
2024-08-22 17:00:49 +02:00
committed by GitHub
parent 038142c180
commit 833d677d20
2 changed files with 25 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ export enum SubComponentName {
}
export type ColumnSizesMap = { [columnId: string]: WidthDefinition };
export type WidthDefinition = { idealWidth?: number; minWidth?: number };
export type WidthDefinition = { widthPx: number };
export type TabDivider = { leftPaneWidthPercent: number };
/**