diff options
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 8f16df1dc..1ece3f238 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -241,7 +241,7 @@ export class TableBox extends React.Component<TableBoxProps> { </tr> ))} </tbody> - <div style={{ height: (this._tableDataIds.length - this.endID) * 40 }} /> + <div style={{ height: (this._tableDataIds.length - this.endID) * Number(DATA_VIZ_TABLE_ROW_HEIGHT) }} /> </table> </div> </div> |