aboutsummaryrefslogtreecommitdiff
path: root/src/site/pages/dashboard/settings.vue
diff options
context:
space:
mode:
authorPitu <[email protected]>2019-10-12 15:47:25 +0900
committerPitu <[email protected]>2019-10-12 15:47:25 +0900
commit391ee68e4a67aec640e25bc3506f9e31c77e58f5 (patch)
tree79a73f30997dfe7bc2b355eb3421e13b81d49dd2 /src/site/pages/dashboard/settings.vue
parentchore: remove exif strip support. (diff)
downloadhost.fuwn.me-391ee68e4a67aec640e25bc3506f9e31c77e58f5.tar.xz
host.fuwn.me-391ee68e4a67aec640e25bc3506f9e31c77e58f5.zip
chore: Upgrade buefy to newest version
Diffstat (limited to 'src/site/pages/dashboard/settings.vue')
-rw-r--r--src/site/pages/dashboard/settings.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/site/pages/dashboard/settings.vue b/src/site/pages/dashboard/settings.vue
index 944c378..bc39b4f 100644
--- a/src/site/pages/dashboard/settings.vue
+++ b/src/site/pages/dashboard/settings.vue
@@ -147,14 +147,14 @@ export default {
this.options = response.config;
},
promptRestartService() {
- this.$dialog.confirm({
+ this.$buefy.dialog.confirm({
message: 'Keep in mind that restarting only works if you have PM2 or something similar set up. Continue?',
onConfirm: () => this.restartService()
});
},
async restartService() {
const response = await this.$axios.$post(`service/restart`);
- this.$toast.open(response.message);
+ this.$buefy.toast.open(response.message);
}
}
};