diff --git a/src/ui/components/table/ManagedTable.tsx b/src/ui/components/table/ManagedTable.tsx index b10ce548e..5814668c0 100644 --- a/src/ui/components/table/ManagedTable.tsx +++ b/src/ui/components/table/ManagedTable.tsx @@ -615,23 +615,28 @@ export class ManagedTable extends React.Component< .filter(notNull); return ( - this.onHighlight(e, rows[index], index)} - onMouseEnter={e => this.onMouseEnterRow(e, rows[index], index)} - multiline={multiline} - rowLineHeight={24} - highlighted={highlightedRows.has(rows[index].key)} - row={rows[index]} - index={index} - style={ - rows[index].height ? {...style, height: rows[index].height} : style - } - onAddFilter={onAddFilter} - zebra={zebra} - /> + + this.onHighlight(e, rows[index], index)} + onMouseEnter={e => this.onMouseEnterRow(e, rows[index], index)} + multiline={multiline} + rowLineHeight={24} + highlighted={highlightedRows.has(rows[index].key)} + row={rows[index]} + index={index} + style={ + rows[index].height ? {...style, height: rows[index].height} : style + } + onAddFilter={onAddFilter} + zebra={zebra} + /> + ); };