fix: cron input
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-31 16:09:09 +02:00
parent ce795582f9
commit 664b47aa75
+8 -6
View File
@@ -219,14 +219,16 @@ watch(cron, () => {
class="input font-mono flex-1"
@change="onChangeCronValue"
/>
<label class="label flex-1 basis-full">
<label
v-if="
cronType === CronType.EVERY_N_DAYS ||
cronType === CronType.EVERY_N_WEEKS ||
cronType === CronType.EVERY_N_MONTHS
"
class="label flex-1 basis-full"
>
{{ $t("cron.rrule_start") }}
<date-input
v-if="
cronType === CronType.EVERY_N_DAYS ||
cronType === CronType.EVERY_N_WEEKS ||
cronType === CronType.EVERY_N_MONTHS
"
v-model="cronDate"
required
class="input font-mono"