[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-01-14 08:05:32 +00:00 committed by GitHub
parent 4543edebd6
commit d861886502
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -85,12 +85,12 @@ export default {
title() {
if (this.type === "1y") {
return this.$tc("years", 1, {n:1});
return this.$tc("years", 1, { n: 1 });
}
if (this.type === "720") {
return this.$tc("days", 30, {n:30});
return this.$tc("days", 30, { n: 30 });
}
return this.$tc("hours", 24, {n:24});
return this.$tc("hours", 24, { n: 24 });
},
},
};

View File

@ -79,7 +79,7 @@
<ActionInput
v-model="tlsExpiryNotifInput"
:type="'number'"
:placeholder="$tc('days', 1, {n:1})"
:placeholder="$tc('days', 1, { n: 1 })"
:icon="'plus'"
:action="() => addTlsExpiryNotifDay(tlsExpiryNotifInput)"
:action-aria-label="$t('Add a new expiry notification day')"
@ -117,7 +117,7 @@
<ActionInput
v-model="domainExpiryNotifInput"
:type="'number'"
:placeholder="$tc('days', 1, {n:1})"
:placeholder="$tc('days', 1, { n: 1 })"
:icon="'plus'"
:action="() => addDomainExpiryNotifDay(domainExpiryNotifInput)"
:action-aria-label="$t('Add a new expiry notification day')"