change(ui) - remove inactive row opacity

This commit is contained in:
Shekar Siri 2022-09-02 15:52:21 +05:30
parent 4c1494869f
commit 4ee54e062e

View file

@ -174,7 +174,7 @@ export default class TimeTable extends React.PureComponent<Props, State> {
'error color-red': !!row.isRed && row.isRed(),
'cursor-pointer': typeof onRowClick === 'function',
[stl.activeRow]: activeIndex === index,
[stl.inactiveRow]: !activeIndex || index > activeIndex,
// [stl.inactiveRow]: !activeIndex || index > activeIndex,
})}
onClick={typeof onRowClick === 'function' ? () => onRowClick(row, index) : undefined}
id="table-row"