mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
Strict null check workbench issue service
This commit is contained in:
@@ -171,7 +171,9 @@ function applyStyles(styles: ProcessExplorerStyles): void {
|
||||
if (document.head) {
|
||||
document.head.appendChild(styleTag);
|
||||
}
|
||||
document.body.style.color = styles.color;
|
||||
if (styles.color) {
|
||||
document.body.style.color = styles.color;
|
||||
}
|
||||
}
|
||||
|
||||
function applyZoom(zoomLevel: number): void {
|
||||
|
||||
Reference in New Issue
Block a user