Strict null check workbench issue service

This commit is contained in:
Matt Bierner
2018-12-10 15:41:46 -08:00
parent ebef92f9c2
commit 90416b8edb
4 changed files with 49 additions and 41 deletions

View File

@@ -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 {