diff --git a/packages/frontend-core/src/components/grid/stores/ui.js b/packages/frontend-core/src/components/grid/stores/ui.js index 7b4a9534c6..ba780dee6c 100644 --- a/packages/frontend-core/src/components/grid/stores/ui.js +++ b/packages/frontend-core/src/components/grid/stores/ui.js @@ -196,6 +196,8 @@ export const initialise = context => { initialRowHeight.subscribe(height => { if (height) { rowHeight.set(height) + } else { + rowHeight.set(get(table)?.rowHeight || DefaultRowHeight) } }) }