This commit is contained in:
Axolotle 2021-01-09 13:02:26 +01:00
parent 0a26c2cea5
commit 8273b52898
6 changed files with 22 additions and 21 deletions

View file

@ -7,7 +7,7 @@
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
"build": "vue-cli-service build", "build": "vue-cli-service build",
"lint": "vue-cli-service lint", "lint": "vue-cli-service lint --no-fix",
"i18n": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/*.json'", "i18n": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/*.json'",
"i18n:en": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/en.json'" "i18n:en": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/locales/en.json'"
}, },

View file

@ -62,7 +62,5 @@ export async function handleError (response, method) {
store.dispatch('DISPATCH_ERROR', error) store.dispatch('DISPATCH_ERROR', error)
} }
// error.print()
throw error throw error
} }

View file

@ -1,4 +1,4 @@
<template lang="html"> <template>
<div class="selectize-base"> <div class="selectize-base">
<b-input-group> <b-input-group>
<b-input-group-prepend is-text> <b-input-group-prepend is-text>

View file

@ -150,7 +150,6 @@
<script> <script>
import { validationMixin } from 'vuelidate' import { validationMixin } from 'vuelidate'
import api from '@/api'
import { required, githubLink } from '@/helpers/validators' import { required, githubLink } from '@/helpers/validators'
import { randint } from '@/helpers/commons' import { randint } from '@/helpers/commons'

View file

@ -52,10 +52,14 @@ export default {
methods: { methods: {
formatBackupList (data) { formatBackupList (data) {
const archives = Object.entries(data.archives) const archives = Object.entries(data.archives)
this.archives = archives.length === 0 ? null : archives.map(([name, infos]) => { if (archives.length) {
this.archives = archives.map(([name, infos]) => {
infos.name = name infos.name = name
return infos return infos
}).reverse() }).reverse()
} else {
this.archives = null
}
} }
}, },

View file

@ -161,7 +161,7 @@ export default {
report.errors = 0 report.errors = 0
report.ignoreds = 0 report.ignoreds = 0
for (var item of report.items) { for (const item of report.items) {
this.formatReportItem(report, item) this.formatReportItem(report, item)
} }
report.noIssues = report.warnings + report.errors === 0 report.noIssues = report.warnings + report.errors === 0