Skip to content

Commit f259e2b

Browse files
[autofix.ci] apply automated fixes
1 parent bcaf554 commit f259e2b

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

server/notification-providers/google-sheets.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class GoogleSheets extends NotificationProvider {
3434
// Send data to Google Apps Script webhook
3535
const config = this.getAxiosConfigWithProxy({
3636
headers: {
37-
"Content-Type": "application/json"
38-
}
37+
"Content-Type": "application/json",
38+
},
3939
});
4040

4141
const data = {
@@ -45,7 +45,7 @@ class GoogleSheets extends NotificationProvider {
4545
monitorUrl,
4646
message: msg,
4747
responseTime,
48-
statusCode
48+
statusCode,
4949
};
5050

5151
await axios.post(notification.googleSheetsWebhookUrl, data, config);

src/components/notifications/GoogleSheets.vue

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
</div>
1414
</div>
1515

16-
<div class="alert alert-info" style="border-radius: 8px;">
17-
<h6 style="margin-bottom: 12px; font-weight: 600;">{{ $t("Quick Setup Guide") }}:</h6>
18-
<ol style="margin-bottom: 0; padding-left: 20px; line-height: 1.8;">
16+
<div class="alert alert-info" style="border-radius: 8px">
17+
<h6 style="margin-bottom: 12px; font-weight: 600">{{ $t("Quick Setup Guide") }}:</h6>
18+
<ol style="margin-bottom: 0; padding-left: 20px; line-height: 1.8">
1919
<li>{{ $t("Open your Google Spreadsheet") }}</li>
2020
<li>{{ $t("Go to Extensions → Apps Script") }}</li>
2121
<li>{{ $t("Paste the script code (see below)") }}</li>
@@ -27,18 +27,14 @@
2727

2828
<ToggleSection :heading="$t('Google Apps Script Code')">
2929
<div class="mb-3">
30-
<textarea
31-
readonly
32-
class="form-control"
33-
rows="15"
34-
style="font-family: monospace; font-size: 12px;"
30+
<textarea
31+
readonly
32+
class="form-control"
33+
rows="15"
34+
style="font-family: monospace; font-size: 12px"
3535
:value="scriptCode"
3636
/>
37-
<button
38-
type="button"
39-
class="btn btn-outline-secondary btn-sm mt-2"
40-
@click="copyScript"
41-
>
37+
<button type="button" class="btn btn-outline-secondary btn-sm mt-2" @click="copyScript">
4238
{{ $t("Copy to Clipboard") }}
4339
</button>
4440
</div>
@@ -82,7 +78,7 @@ export default {
8278
computed: {
8379
scriptCode() {
8480
return GOOGLE_APPS_SCRIPT_CODE;
85-
}
81+
},
8682
},
8783
methods: {
8884
copyScript() {
@@ -92,7 +88,7 @@ export default {
9288
} catch (error) {
9389
alert(this.$t("Failed to copy to clipboard"));
9490
}
95-
}
96-
}
91+
},
92+
},
9793
};
9894
</script>

0 commit comments

Comments
 (0)