From a965161dce87744dbd327aee7fa02da387c084ed Mon Sep 17 00:00:00 2001 From: Jake Heinz Date: Wed, 1 Jun 2022 06:58:16 +0000 Subject: [PATCH] [editors/vscode] cleaer status bar bg color / command when server status returns to OK --- editors/code/src/ctx.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts index b03424dbb30d..51781b4205cd 100644 --- a/editors/code/src/ctx.ts +++ b/editors/code/src/ctx.ts @@ -81,7 +81,9 @@ export class Ctx { let icon = ""; switch (status.health) { case "ok": + this.statusBar.command = undefined; this.statusBar.color = undefined; + this.statusBar.backgroundColor = undefined; break; case "warning": this.statusBar.tooltip += "\nClick to reload.";