fix snapshot mismatch message for file

This commit is contained in:
Henry Jameson 2020-01-23 22:04:05 +02:00
parent 64fc07f080
commit a69723badf
1 changed files with 2 additions and 2 deletions

View File

@ -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,