From 4ee54e062edd0ab6f06be5aecd3a4570e7a5b338 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 2 Sep 2022 15:52:21 +0530 Subject: [PATCH] change(ui) - remove inactive row opacity --- frontend/app/components/Session_/TimeTable/TimeTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session_/TimeTable/TimeTable.tsx b/frontend/app/components/Session_/TimeTable/TimeTable.tsx index 7b2fab76c..c6e3ea716 100644 --- a/frontend/app/components/Session_/TimeTable/TimeTable.tsx +++ b/frontend/app/components/Session_/TimeTable/TimeTable.tsx @@ -174,7 +174,7 @@ export default class TimeTable extends React.PureComponent { '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"