File tree Expand file tree Collapse file tree
log-viewer/src/features/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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' ;
55import { customElement , property , state } from 'lit/decorators.js' ;
66
77import { parse } from '../../core/log-parser/ApexLogParser.js' ;
@@ -16,6 +16,7 @@ import type { TimelineGroup } from '../timeline/services/Timeline.js';
1616import { keyMap , setColors } from '../timeline/services/Timeline.js' ;
1717
1818// styles
19+ import codiconStyles from '../../styles/codicon.css' ;
1920import { 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;
You can’t perform that action at this time.
0 commit comments