From 0c6d1abf1ed716b4ea2b0928243ce602614397b1 Mon Sep 17 00:00:00 2001 From: Sidney Alcantara Date: Tue, 14 Apr 2020 13:42:05 +1000 Subject: [PATCH] add minimum row height --- www/src/components/Table/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/components/Table/index.tsx b/www/src/components/Table/index.tsx index c5c20426..ea0f8e08 100644 --- a/www/src/components/Table/index.tsx +++ b/www/src/components/Table/index.tsx @@ -168,7 +168,7 @@ export default function Table({ collection, filters }: ITableProps) { if (action === "CELL_UPDATE") updateCell!(rows[event.toRow].ref, cellKey as string, updated); }} - rowHeight={rowHeight} + rowHeight={rowHeight ?? 43} headerRowHeight={44} // TODO: Investigate why setting a numeric value causes // LOADING to pop up on screen when scrolling horizontally