diff --git a/src/config.js b/src/config.js index b41ba7e4e..e8fb6f251 100644 --- a/src/config.js +++ b/src/config.js @@ -1339,20 +1339,20 @@ sizes. See [this document][watches] for more info. getRawScopedValue (scopeDescriptor, keyPath, options) { scopeDescriptor = ScopeDescriptor.fromObject(scopeDescriptor) const result = this.scopedSettingsStore.getPropertyValue( - scopeDescriptor.getScopeChain(), - keyPath, - options - ) + scopeDescriptor.getScopeChain(), + keyPath, + options + ) const legacyScopeDescriptor = this.getLegacyScopeDescriptor(scopeDescriptor) if (result != null) { return result } else if (legacyScopeDescriptor) { return this.scopedSettingsStore.getPropertyValue( - legacyScopeDescriptor.getScopeChain(), - keyPath, - options - ) + legacyScopeDescriptor.getScopeChain(), + keyPath, + options + ) } }