Fix table height calculation not being exact

This commit is contained in:
Andrew Kingston 2022-02-18 13:27:36 +00:00
parent 35f95d2fb3
commit 9e8742b710
1 changed files with 2 additions and 1 deletions

View File

@ -107,7 +107,7 @@
if (!rowCount || !visibleRows) {
return ""
}
return `height: ${headerHeight + visibleRows * (rowHeight + 1)}px;`
return `height: ${headerHeight + visibleRows * rowHeight}px;`
}
const getGridStyle = (fields, schema, showEditColumn) => {
@ -458,6 +458,7 @@
}
.spectrum-Table-row > :last-child {
border-right: var(--table-border);
padding-right: var(--cell-padding);
}
/* Table cells */