From 8132399c29a07b783d2b24ccd80da7676460dbf3 Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Tue, 27 Feb 2024 11:26:24 -0800 Subject: Reformat files with new linter All changes should be whitespace, and were done using npm run-script lint. Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6 Signed-off-by: Ed Tanous --- .../ServerPowerOperations/ServerPowerOperations.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue') diff --git a/src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue b/src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue index ba9ebced..e3864b4a 100644 --- a/src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue +++ b/src/views/Operations/ServerPowerOperations/ServerPowerOperations.vue @@ -189,9 +189,8 @@ export default { return this.$store.getters['serverBootSettings/overrideEnabled']; }, hasBootSourceOptions() { - let bootOptions = this.$store.getters[ - 'serverBootSettings/bootSourceOptions' - ]; + let bootOptions = + this.$store.getters['serverBootSettings/bootSourceOptions']; return bootOptions.length !== 0; }, }, @@ -199,7 +198,7 @@ export default { this.startLoader(); const bootSettingsPromise = new Promise((resolve) => { this.$root.$on('server-power-operations-boot-settings-complete', () => - resolve() + resolve(), ); }); Promise.all([ @@ -214,7 +213,7 @@ export default { }, rebootServer() { const modalMessage = this.$t( - 'pageServerPowerOperations.modal.confirmRebootMessage' + 'pageServerPowerOperations.modal.confirmRebootMessage', ); const modalOptions = { title: this.$t('pageServerPowerOperations.modal.confirmRebootTitle'), @@ -238,7 +237,7 @@ export default { }, shutdownServer() { const modalMessage = this.$t( - 'pageServerPowerOperations.modal.confirmShutdownMessage' + 'pageServerPowerOperations.modal.confirmShutdownMessage', ); const modalOptions = { title: this.$t('pageServerPowerOperations.modal.confirmShutdownTitle'), -- cgit v1.2.3