diff --git a/server/notification-providers/google-sheets.js b/server/notification-providers/google-sheets.js index fc74a6b55..6220e272f 100644 --- a/server/notification-providers/google-sheets.js +++ b/server/notification-providers/google-sheets.js @@ -34,8 +34,8 @@ class GoogleSheets extends NotificationProvider { // Send data to Google Apps Script webhook const config = this.getAxiosConfigWithProxy({ headers: { - "Content-Type": "application/json" - } + "Content-Type": "application/json", + }, }); const data = { @@ -45,7 +45,7 @@ class GoogleSheets extends NotificationProvider { monitorUrl, message: msg, responseTime, - statusCode + statusCode, }; await axios.post(notification.googleSheetsWebhookUrl, data, config); diff --git a/src/components/notifications/GoogleSheets.vue b/src/components/notifications/GoogleSheets.vue index f702a94b4..261cc4c5a 100644 --- a/src/components/notifications/GoogleSheets.vue +++ b/src/components/notifications/GoogleSheets.vue @@ -13,9 +13,9 @@ -