made it actually work, the forceSnapshot

This commit is contained in:
Henry Jameson 2020-01-22 02:53:40 +02:00
parent d98e31af45
commit c7f42b7799
2 changed files with 4 additions and 9 deletions

View file

@ -390,11 +390,6 @@ export default {
const snapshotEngineVersion = (theme || {}).themeEngineVersion
const themeEngineVersion = (source || {}).themeEngineVersion || 2
const versionsMatch = themeEngineVersion === CURRENT_VERSION
console.log(
theme !== undefined,
source !== undefined,
themeEngineVersion !== snapshotEngineVersion
)
const sourceSnapshotMismatch = (
theme !== undefined &&
source !== undefined &&
@ -442,7 +437,7 @@ export default {
forceLoad () {
const { origin } = this.themeWarning
switch (origin) {
case 'localstorage':
case 'localStorage':
this.loadThemeFromLocalStorage(true)
break
case 'file':
@ -451,10 +446,10 @@ export default {
}
this.dismissWarning()
},
forceSnapshot() {
forceSnapshot () {
const { origin } = this.themeWarning
switch (origin) {
case 'localstorage':
case 'localStorage':
this.loadThemeFromLocalStorage(false, true)
break
case 'file':

View file

@ -16,7 +16,7 @@
</button>
<button
class="btn"
@click="dismissWarning"
@click="forceSnapshot"
>
{{ $t('settings.style.switcher.use_snapshot') }}
</button>