aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/inlay_hints.ts
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-22 12:01:27 +0000
committerGitHub <[email protected]>2020-02-22 12:01:27 +0000
commit70ad904012c3614d200cee99e28c5536b68f0588 (patch)
tree3268f6baf6f259c52bb56d57728ffdeed1859833 /editors/code/src/inlay_hints.ts
parent9999660c9082e54b1afb868848f19edd96284d80 (diff)
parentd905abfb118ca50f6af1292073ce4fc3b91c7045 (diff)
Merge #3205
3205: vscode: migrate to tripple equals r=matklad a=Veetaha Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r--editors/code/src/inlay_hints.ts2
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) {