We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd5abc commit e715a1cCopy full SHA for e715a1c
2 files changed
log-viewer/src/core/log-parser/types.ts
@@ -9,6 +9,7 @@ export type IssueType = 'unexpected' | 'error' | 'skip';
9
export type LineNumber = number | 'EXTERNAL' | null; // an actual line-number or 'EXTERNAL'
10
11
export type LogSubCategory =
12
+ | ''
13
| 'Method'
14
| 'System Method'
15
| 'Code Unit'
log-viewer/src/features/timeline/themes/ThemeSelector.ts
@@ -2,7 +2,7 @@
2
* Copyright (c) 2025 Certinia Inc. All rights reserved.
3
*/
4
5
-import { DEFAULT_THEME_NAME, THEMES, type TimelineColors } from './themes.js';
+import { DEFAULT_THEME_NAME, THEMES, type TimelineColors } from './Themes.js';
6
const THEME_MAP = new Map<string, TimelineColors>(
7
THEMES.map((theme) => [theme.name, theme.colors]),
8
);
0 commit comments