Skip to content

Commit 71c0791

Browse files
authored
fixed incorrect row height (related to #1754)
1 parent cb96799 commit 71c0791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dashboard/Data/Browser/BrowserTable.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import PropTypes from 'lib/PropTypes';
2121

2222
const MAX_ROWS = 200; // Number of rows to render at any time
2323
const ROWS_OFFSET = 160;
24-
const ROW_HEIGHT = 31;
24+
const ROW_HEIGHT = 30;
2525

2626
const READ_ONLY = [ 'objectId', 'createdAt', 'updatedAt' ];
2727

0 commit comments

Comments
 (0)