v1.7 alpha.2

This commit is contained in:
carodej
2020-07-15 08:34:52 +02:00
parent b1860eac21
commit 38da639e26
32 changed files with 352 additions and 145 deletions

View File

@@ -9,7 +9,7 @@ const Helpers = {
Vue.prototype.$updateText = debounce(function (route, name, value) {
if (value === '') return
if (! value || value === '') return
axios.patch(this.$store.getters.api + route, {name, value})
.catch(error => {
@@ -18,7 +18,7 @@ const Helpers = {
message: this.$t('popup_error.message'),
})
})
}, 300)
}, 150)
Vue.prototype.$updateImage = function (route, name, image) {