Переход на quasar

This commit is contained in:
Book Pauk
2020-02-26 14:34:30 +07:00
parent 78dfc9cb1c
commit 4203d179e6

View File

@@ -177,17 +177,17 @@ class ServerStorage extends Vue {
success(message) {
if (this.showServerStorageMessages)
this.$notify.success({message});
this.$root.notify.success(message);
}
warning(message) {
if (this.showServerStorageMessages && !this.offlineModeActive)
this.$notify.warning({message});
this.$root.notify.warning(message);
}
error(message) {
if (this.showServerStorageMessages && !this.offlineModeActive)
this.$notify.error({message});
this.$root.notify.error(message);
}
async loadSettings(force = false, doNotifySuccess = true) {