aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2019-07-29 09:19:13 +0100
committerKirill Bulatov <[email protected]>2019-07-29 09:19:13 +0100
commit4924867b3b4ff3d7b363f6cb62bd236dd8270f24 (patch)
treeaf1569a682468deb281f86d650e8e098192e2386 /editors
parentb133a3b55c47c666d364bc179595a837168b5ade (diff)
Style fixes
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/commands/inlay_hints.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/commands/inlay_hints.ts b/editors/code/src/commands/inlay_hints.ts
index 34f7ccddb..3ba9da48b 100644
--- a/editors/code/src/commands/inlay_hints.ts
+++ b/editors/code/src/commands/inlay_hints.ts
@@ -85,7 +85,10 @@ export class HintsUpdater {
85 range: hint.range, 85 range: hint.range,
86 renderOptions: { after: { contentText: `: ${hint.label}` } } 86 renderOptions: { after: { contentText: `: ${hint.label}` } }
87 })); 87 }));
88 return editor.setDecorations(typeHintDecorationType, newDecorations); 88 return editor.setDecorations(
89 typeHintDecorationType,
90 newDecorations
91 );
89 } 92 }
90 } 93 }
91 94