forked from AkkomaGang/akkoma-fe
lint
This commit is contained in:
parent
395e12cbc6
commit
914b4eb593
3 changed files with 14 additions and 9 deletions
|
@ -99,7 +99,7 @@ const SettingsModal = {
|
||||||
if (minor > PLEROMAFE_SETTINGS_MINOR_VERSION) {
|
if (minor > PLEROMAFE_SETTINGS_MINOR_VERSION) {
|
||||||
this.$store.dispatch('pushGlobalNotice', {
|
this.$store.dispatch('pushGlobalNotice', {
|
||||||
level: 'warning',
|
level: 'warning',
|
||||||
messageKey: 'settings.file_export_import.errors.file_slightly_new',
|
messageKey: 'settings.file_export_import.errors.file_slightly_new'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -113,8 +113,7 @@ const SettingsModal = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onImport (data) {
|
onImport (data) {
|
||||||
if (data)
|
if (data) { this.$store.dispatch('loadSettings', data) }
|
||||||
this.$store.dispatch('loadSettings', data)
|
|
||||||
},
|
},
|
||||||
restore () {
|
restore () {
|
||||||
console.log(this.dataImporter)
|
console.log(this.dataImporter)
|
||||||
|
|
|
@ -31,8 +31,8 @@
|
||||||
</transition>
|
</transition>
|
||||||
<button
|
<button
|
||||||
class="btn button-default"
|
class="btn button-default"
|
||||||
@click="peekModal"
|
|
||||||
:title="$t('general.peek')"
|
:title="$t('general.peek')"
|
||||||
|
@click="peekModal"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
:icon="['far', 'window-minimize']"
|
:icon="['far', 'window-minimize']"
|
||||||
|
@ -41,8 +41,8 @@
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn button-default"
|
class="btn button-default"
|
||||||
@click="closeModal"
|
|
||||||
:title="$t('general.close')"
|
:title="$t('general.close')"
|
||||||
|
@click="closeModal"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
icon="times"
|
icon="times"
|
||||||
|
|
|
@ -79,10 +79,16 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="export-import">
|
<div class="export-import">
|
||||||
<button class="btn button-default" @click="importTheme">
|
<button
|
||||||
|
class="btn button-default"
|
||||||
|
@click="importTheme"
|
||||||
|
>
|
||||||
{{ $t("settings.import_theme") }}
|
{{ $t("settings.import_theme") }}
|
||||||
</button>
|
</button>
|
||||||
<button class="btn button-default" @click="exportTheme">
|
<button
|
||||||
|
class="btn button-default"
|
||||||
|
@click="exportTheme"
|
||||||
|
>
|
||||||
{{ $t("settings.export_theme") }}
|
{{ $t("settings.export_theme") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue