diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/color_theme.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/color_theme.ts b/editors/code/src/color_theme.ts index e4d20490b..d816f617d 100644 --- a/editors/code/src/color_theme.ts +++ b/editors/code/src/color_theme.ts | |||
@@ -31,8 +31,8 @@ export class ColorTheme { | |||
31 | const scopes = typeof rule.scope === 'undefined' | 31 | const scopes = typeof rule.scope === 'undefined' |
32 | ? [] | 32 | ? [] |
33 | : typeof rule.scope === 'string' | 33 | : typeof rule.scope === 'string' |
34 | ? [rule.scope] | 34 | ? [rule.scope] |
35 | : rule.scope; | 35 | : rule.scope; |
36 | for (const scope of scopes) { | 36 | for (const scope of scopes) { |
37 | res.rules.set(scope, rule.settings); | 37 | res.rules.set(scope, rule.settings); |
38 | } | 38 | } |