summaryrefslogtreecommitdiff
path: root/src/views/Overview/OverviewQuickLinks.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Overview/OverviewQuickLinks.vue')
-rw-r--r--src/views/Overview/OverviewQuickLinks.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/views/Overview/OverviewQuickLinks.vue b/src/views/Overview/OverviewQuickLinks.vue
index e0b4487f..1cbc64d5 100644
--- a/src/views/Overview/OverviewQuickLinks.vue
+++ b/src/views/Overview/OverviewQuickLinks.vue
@@ -62,7 +62,7 @@ import BVToastMixin from '@/components/Mixins/BVToastMixin';
export default {
name: 'QuickLinks',
components: {
- IconArrowRight: ArrowRight16
+ IconArrowRight: ArrowRight16,
},
mixins: [BVToastMixin],
computed: {
@@ -75,13 +75,13 @@ export default {
},
set(value) {
return value;
- }
- }
+ },
+ },
},
created() {
Promise.all([
this.$store.dispatch('global/getBmcTime'),
- this.$store.dispatch('serverLed/getIndicatorValue')
+ this.$store.dispatch('serverLed/getIndicatorValue'),
]).finally(() => {
this.$root.$emit('overview::quicklinks::complete');
});
@@ -90,10 +90,10 @@ export default {
onChangeServerLed(value) {
this.$store
.dispatch('serverLed/saveIndicatorLedValue', value)
- .then(message => this.successToast(message))
+ .then((message) => this.successToast(message))
.catch(({ message }) => this.errorToast(message));
- }
- }
+ },
+ },
};
</script>