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/Settings/SnmpAlerts/SnmpAlerts.vue b/src/views/Settings/SnmpAlerts/SnmpAlerts.vue
index 8a9b8e7..528033b 100644
--- a/src/views/Settings/SnmpAlerts/SnmpAlerts.vue
+++ b/src/views/Settings/SnmpAlerts/SnmpAlerts.vue
@@ -209,7 +209,7 @@
title: this.$tc('pageSnmpAlerts.modal.deleteSnmpDestinationTitle'),
okTitle: this.$tc('pageSnmpAlerts.deleteDestination'),
cancelTitle: this.$t('global.action.cancel'),
- }
+ },
)
.then((deleteConfirmed) => {
if (deleteConfirmed) {
@@ -231,19 +231,19 @@
.msgBoxConfirm(
this.$tc(
'pageSnmpAlerts.modal.batchDeleteConfirmMessage',
- this.selectedRows.length
+ this.selectedRows.length,
),
{
title: this.$tc(
'pageSnmpAlerts.modal.deleteSnmpDestinationTitle',
- this.selectedRows.length
+ this.selectedRows.length,
),
okTitle: this.$tc(
'pageSnmpAlerts.deleteDestination',
- this.selectedRows.length
+ this.selectedRows.length,
),
cancelTitle: this.$t('global.action.cancel'),
- }
+ },
)
.then((deleteConfirmed) => {
if (deleteConfirmed) {
@@ -251,7 +251,7 @@
this.$store
.dispatch(
'snmpAlerts/deleteMultipleDestinations',
- this.selectedRows
+ this.selectedRows,
)
.then((messages) => {
messages.forEach(({ type, message }) => {