From a69723badf45a62cb9f6e0adc09b49ff10c9eaac Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 23 Jan 2020 22:04:05 +0200 Subject: [PATCH] fix snapshot mismatch message for file --- src/components/style_switcher/style_switcher.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/style_switcher/style_switcher.js b/src/components/style_switcher/style_switcher.js index 06ef71a756..59ec1bf512 100644 --- a/src/components/style_switcher/style_switcher.js +++ b/src/components/style_switcher/style_switcher.js @@ -385,7 +385,7 @@ export default { if (!source && !theme) { throw new Error('Can\'t load theme: empty') } - const version = (origin === 'localstorage' && !theme.colors) + const version = (origin === 'localStorage' && !theme.colors) ? 'l1' : fileVersion const snapshotEngineVersion = (theme || {}).themeEngineVersion @@ -404,7 +404,7 @@ export default { version !== 'l1' && origin !== 'defaults' ) { - if (sourceSnapshotMismatch) { + if (sourceSnapshotMismatch && origin === 'localStorage') { this.themeWarning = { origin, themeEngineVersion,