Skip to content

Commit 20428da

Browse files
committed
app: don't highlight goto instructions
Signed-off-by: Ihor Solodrai <ihor.solodrai@linux.dev>
1 parent a477887 commit 20428da

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

app.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ const createApp = () => {
192192
let highlightClass = 'normal';
193193
if (idx === state.selectedIdx)
194194
highlightClass = 'selected';
195-
else if (line?.raw.includes('goto'))
196-
highlightClass = 'goto-line';
197195
else if (!line?.bpfIns && !line?.bpfStateExprs)
198196
highlightClass = 'ignorable';
199197

styles.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,6 @@ body {
106106
color: #a0a0a0;
107107
}
108108

109-
.goto-line {
110-
font-weight: bold;
111-
color: red;
112-
}
113-
114109
.log-line {
115110
min-height: 1.4em;
116111
}

0 commit comments

Comments
 (0)