feat(ui): add helper text for frequency input on scheduled task view
This commit is contained in:
parent
401227932e
commit
a1e5357870
1 changed files with 2 additions and 1 deletions
|
|
@ -26,7 +26,8 @@
|
||||||
<h3 class="pt-4">Configuration</h3>
|
<h3 class="pt-4">Configuration</h3>
|
||||||
<div class="flex gap-2 w-full">
|
<div class="flex gap-2 w-full">
|
||||||
<x-forms.input placeholder="Name" id="name" label="Name" required />
|
<x-forms.input placeholder="Name" id="name" label="Name" required />
|
||||||
<x-forms.input placeholder="0 0 * * * or daily" id="frequency" label="Frequency" required />
|
<x-forms.input placeholder="0 0 * * * or daily" id="frequency" label="Frequency"
|
||||||
|
helper="You can use every_minute, hourly, daily, weekly, monthly, yearly or a cron expression." required />
|
||||||
<x-forms.input type="number" placeholder="300" id="timeout"
|
<x-forms.input type="number" placeholder="300" id="timeout"
|
||||||
helper="Maximum execution time in seconds (60-36000)." label="Timeout (seconds)" required />
|
helper="Maximum execution time in seconds (60-36000)." label="Timeout (seconds)" required />
|
||||||
@if ($type === 'application')
|
@if ($type === 'application')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue