diff options
author | Kirill Bulatov <[email protected]> | 2019-07-29 09:19:13 +0100 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2019-07-29 09:19:13 +0100 |
commit | 4924867b3b4ff3d7b363f6cb62bd236dd8270f24 (patch) | |
tree | af1569a682468deb281f86d650e8e098192e2386 | |
parent | b133a3b55c47c666d364bc179595a837168b5ade (diff) |
Style fixes
-rw-r--r-- | editors/code/src/commands/inlay_hints.ts | 5 |
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 | ||