Table: Fix cell border visibility (#101951)

fix(table): cell border visibility
pull/102032/head
Ihor Yeromin 4 months ago committed by GitHub
parent 3f2eb087ea
commit b224751374
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      packages/grafana-ui/src/components/Table/RowsList.tsx

@ -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}

Loading…
Cancel
Save