Skip to content

Commit

Permalink
Fix coloring of inlined totals
Browse files Browse the repository at this point in the history
This was a regression from 44a6e01
  • Loading branch information
jotaen committed Apr 8, 2024
1 parent af66ac4 commit ac17267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klog/app/cli/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func printWithDurations(styler tf.Styler, ls parser.Lines) string {
length := len(p.d.ToString())
value := ""
if p.isSub {
value += styler.Props(tf.StyleProps{Color: tf.RED}).Format(p.d.ToString())
value += styler.Props(tf.StyleProps{Color: tf.SUBDUED}).Format(p.d.ToString())
} else {
value += styler.Props(tf.StyleProps{IsUnderlined: true}).Format(p.d.ToString())
}
Expand Down

0 comments on commit ac17267

Please sign in to comment.