change(ui) - remove inactive row opacity
This commit is contained in:
parent
4c1494869f
commit
4ee54e062e
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue