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.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/views/Overview/OverviewQuickLinks.vue b/src/views/Overview/OverviewQuickLinks.vue
index 577ea5ff..726eaf7d 100644
--- a/src/views/Overview/OverviewQuickLinks.vue
+++ b/src/views/Overview/OverviewQuickLinks.vue
@@ -4,7 +4,7 @@
<b-list-group-item>
<dl>
<dt>BMC time</dt>
- <dd>{{ bmcTime | date("MMM, DD YYYY HH:MM:SS A ZZ") }}</dd>
+ <dd>{{ bmcTime | date('MMM, DD YYYY HH:MM:SS A ZZ') }}</dd>
</dl>
</b-list-group-item>
<b-list-group-item>
@@ -35,9 +35,9 @@
</template>
<script>
-import ChevronRight16 from "@carbon/icons-vue/es/chevron--right/16";
+import ChevronRight16 from '@carbon/icons-vue/es/chevron--right/16';
export default {
- name: "quickLinks",
+ name: 'quickLinks',
components: {
ChevronRight16
},
@@ -46,12 +46,12 @@ export default {
},
computed: {
bmcTime() {
- return this.$store.getters["global/bmcTime"];
+ return this.$store.getters['global/bmcTime'];
}
},
methods: {
getBmcTime() {
- this.$store.dispatch("global/getBmcTime");
+ this.$store.dispatch('global/getBmcTime');
}
},
data() {