chore: fix tooltips for schedule form item

This commit is contained in:
garethgeorge
2024-09-04 19:51:54 -07:00
parent 656ac9e1b2
commit b5e6febf45

View File

@@ -200,17 +200,17 @@ export const ScheduleFormItem = ({
</Tooltip> </Tooltip>
</Radio.Button> </Radio.Button>
<Radio.Button value={"maxFrequencyHours"}> <Radio.Button value={"maxFrequencyHours"}>
<Tooltip title="Schedule will run at the specified interval in hours relative to Backrest's start time."> <Tooltip title="Schedule will run at the specified interval in hours.">
Interval Hours Interval Hours
</Tooltip> </Tooltip>
</Radio.Button> </Radio.Button>
<Radio.Button value={"maxFrequencyDays"}> <Radio.Button value={"maxFrequencyDays"}>
<Tooltip title="Schedule will run at the specified interval in days relative to Backrest's start time."> <Tooltip title="Schedule will run at the specified interval in days.">
Interval Days Interval Days
</Tooltip> </Tooltip>
</Radio.Button> </Radio.Button>
<Radio.Button value={"cron"}> <Radio.Button value={"cron"}>
<Tooltip title="Schedule will run based on a cron schedule evaluated relative to Backrest's start time."> <Tooltip title="Schedule will run based on a cron schedule.">
Cron Cron
</Tooltip> </Tooltip>
</Radio.Button> </Radio.Button>