Skip to content

Commit 679b1e6

Browse files
committed
fix: tabs not showing icons
1 parent 1d660e5 commit 679b1e6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

log-viewer/src/features/app/LogViewer.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Copyright (c) 2023 Certinia Inc. All rights reserved.
33
*/
4-
import { LitElement, css, html } from 'lit';
4+
import { LitElement, css, html, unsafeCSS } from 'lit';
55
import { customElement, property, state } from 'lit/decorators.js';
66

77
import { parse } from '../../core/log-parser/ApexLogParser.js';
@@ -16,6 +16,7 @@ import type { TimelineGroup } from '../timeline/services/Timeline.js';
1616
import { keyMap, setColors } from '../timeline/services/Timeline.js';
1717

1818
// styles
19+
import codiconStyles from '../../styles/codicon.css';
1920
import { globalStyles } from '../../styles/global.styles.js';
2021

2122
// web components
@@ -45,6 +46,7 @@ export class LogViewer extends LitElement {
4546

4647
static styles = [
4748
globalStyles,
49+
unsafeCSS(codiconStyles),
4850
css`
4951
:host {
5052
display: flex;

0 commit comments

Comments
 (0)