Table: Fix cell border visibility (#101951)

fix(table): cell border visibility
This commit is contained in:
Ihor Yeromin
2025-03-12 14:21:15 +01:00
committed by GitHub
parent 3f2eb087ea
commit b224751374
@@ -351,7 +351,9 @@ export const RowsList = (props: RowsListProps) => {
rowStyled={rowBg !== undefined}
rowExpanded={rowExpanded}
textWrapped={textWrapFinal !== undefined}
height={Number(style.height)}
// VariableSizeList overrides calculated in buildCellContainerStyle height of the cell,
// so we need to subtract 1 to respect the row border
height={Number(style.height) - 1}
getActions={getActions}
replaceVariables={replaceVariables}
setInspectCell={setInspectCell}