Skip to content

Commit

Permalink
fix(ui): update CSS variable for log icon color in LogLine component
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Jan 8, 2025
1 parent a8be084 commit e09e216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/logs/LogLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
},
iconColor() {
const logLevel = this.log.level?.toLowerCase();
return `var(--ks-content-${logLevel}) !important`; // Use CSS variable for icon color
return `var(--ks-log-content-${logLevel}) !important`; // Use CSS variable for icon color
},
message() {
let logMessage = !this.log.message
Expand Down

0 comments on commit e09e216

Please sign in to comment.