diff options
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 26705067a..641ec15c6 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -73,7 +73,7 @@ class HintsUpdater { | |||
73 | async setEnabled(enabled: boolean): Promise<void> { | 73 | async setEnabled(enabled: boolean): Promise<void> { |
74 | console.log({ enabled, prev: this.enabled }); | 74 | console.log({ enabled, prev: this.enabled }); |
75 | 75 | ||
76 | if (this.enabled == enabled) return; | 76 | if (this.enabled === enabled) return; |
77 | this.enabled = enabled; | 77 | this.enabled = enabled; |
78 | 78 | ||
79 | if (this.enabled) { | 79 | if (this.enabled) { |