From 9b4cc126b4a8c012cd5e55837bab0fc867afe52a Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 1 Sep 2022 19:46:29 +0530 Subject: [PATCH] change(ui) - remove inactive row in console --- frontend/app/components/Session_/Console/ConsoleContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session_/Console/ConsoleContent.js b/frontend/app/components/Session_/Console/ConsoleContent.js index ce910dcd1..54a9745d0 100644 --- a/frontend/app/components/Session_/Console/ConsoleContent.js +++ b/frontend/app/components/Session_/Console/ConsoleContent.js @@ -106,7 +106,7 @@ export default class ConsoleContent extends React.PureComponent { warn: l.isYellow(), error: l.isRed(), [stl.activeRow]: lastIndex === index, - [stl.inactiveRow]: index > lastIndex, + // [stl.inactiveRow]: index > lastIndex, 'cursor-pointer': !isResult, })} onClick={() => !isResult && jump(l.time)}