summaryrefslogtreecommitdiff
path: root/src/views/Control/RebootBmc/RebootBmc.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Control/RebootBmc/RebootBmc.vue')
-rw-r--r--src/views/Control/RebootBmc/RebootBmc.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/views/Control/RebootBmc/RebootBmc.vue b/src/views/Control/RebootBmc/RebootBmc.vue
index 29932535..03880b38 100644
--- a/src/views/Control/RebootBmc/RebootBmc.vue
+++ b/src/views/Control/RebootBmc/RebootBmc.vue
@@ -43,10 +43,14 @@ export default {
name: 'RebootBmc',
components: { PageTitle, PageSection },
mixins: [BVToastMixin, LoadingBarMixin],
+ beforeRouteLeave(to, from, next) {
+ this.hideLoader();
+ next();
+ },
computed: {
lastBmcRebootTime() {
return this.$store.getters['controls/lastBmcRebootTime'];
- }
+ },
},
created() {
this.startLoader();
@@ -54,28 +58,24 @@ export default {
.dispatch('controls/getLastBmcRebootTime')
.finally(() => this.endLoader());
},
- beforeRouteLeave(to, from, next) {
- this.hideLoader();
- next();
- },
methods: {
onClick() {
this.$bvModal
.msgBoxConfirm(this.$t('pageRebootBmc.modal.confirmMessage'), {
title: this.$t('pageRebootBmc.modal.confirmTitle'),
- okTitle: this.$t('global.action.confirm')
+ okTitle: this.$t('global.action.confirm'),
})
- .then(confirmed => {
+ .then((confirmed) => {
if (confirmed) this.rebootBmc();
});
},
rebootBmc() {
this.$store
.dispatch('controls/rebootBmc')
- .then(message => this.successToast(message))
+ .then((message) => this.successToast(message))
.catch(({ message }) => this.errorToast(message));
- }
- }
+ },
+ },
};
</script>