Show snackbar on SOTA database error

pull/10/head
Manuel Kasper 2021-03-07 10:28:14 +01:00
rodzic 445fa065f0
commit f6c7020f9b
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -273,7 +273,12 @@ export default {
})
return filter
})
.catch(() => {
.catch((e) => {
this.$buefy.snackbar.open({
message: 'SOTA database error, try again later',
type: 'is-warning',
position: 'is-bottom'
})
this.filterLoadingCount--
})
},