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 <ed@tanous.net>
diff --git a/src/views/Logs/Dumps/Dumps.vue b/src/views/Logs/Dumps/Dumps.vue
index 81c9de0..77161d4 100644
--- a/src/views/Logs/Dumps/Dumps.vue
+++ b/src/views/Logs/Dumps/Dumps.vue
@@ -294,13 +294,13 @@
this.allDumps,
this.filterStartDate,
this.filterEndDate,
- 'dateTime'
+ 'dateTime',
);
},
filteredDumps() {
return this.getFilteredTableData(
this.filteredDumpsByDate,
- this.activeFilters
+ this.activeFilters,
);
},
},
@@ -356,19 +356,19 @@
.msgBoxConfirm(
this.$tc(
'pageDumps.modal.deleteDumpConfirmation',
- this.selectedRows.length
+ this.selectedRows.length,
),
{
title: this.$tc(
'pageDumps.modal.deleteDump',
- this.selectedRows.length
+ this.selectedRows.length,
),
okTitle: this.$tc(
'pageDumps.modal.deleteDump',
- this.selectedRows.length
+ this.selectedRows.length,
),
cancelTitle: this.$t('global.action.cancel'),
- }
+ },
)
.then((deleteConfrimed) => {
if (deleteConfrimed) {
diff --git a/src/views/Logs/Dumps/DumpsForm.vue b/src/views/Logs/Dumps/DumpsForm.vue
index 07f4a06..0a9b058 100644
--- a/src/views/Logs/Dumps/DumpsForm.vue
+++ b/src/views/Logs/Dumps/DumpsForm.vue
@@ -73,7 +73,7 @@
this.infoToast(this.$t('pageDumps.toast.successStartBmcDump'), {
title: this.$t('pageDumps.toast.successStartBmcDumpTitle'),
timestamp: true,
- })
+ }),
)
.catch(({ message }) => this.errorToast(message));
}
@@ -88,7 +88,7 @@
this.infoToast(this.$t('pageDumps.toast.successStartSystemDump'), {
title: this.$t('pageDumps.toast.successStartSystemDumpTitle'),
timestamp: true,
- })
+ }),
)
.catch(({ message }) => this.errorToast(message));
},