From 9bc43bda9b1c2aa40421b0ff29147f74cdf8aff8 Mon Sep 17 00:00:00 2001 From: Philip Weiss Date: Fri, 19 Jan 2018 17:11:16 -0800 Subject: [PATCH] fix small indentation errors --- src/config.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 + ) } }