Add information on disabling scheduling.

This commit is contained in:
SergeantPanda 2025-05-07 09:10:56 -05:00
parent 312eacf64c
commit b5cdf3ceb2
2 changed files with 4 additions and 2 deletions

View file

@ -139,7 +139,8 @@ const EPG = ({ epg = null, isOpen, onClose }) => {
<NumberInput
label="Refresh Interval (hours)"
description="How often to automatically refresh EPG data"
description={<>How often to automatically refresh EPG data<br />
(0 to disable automatic refreshes)</>}
{...form.getInputProps('refresh_interval')}
key={form.key('refresh_interval')}
/>

View file

@ -317,7 +317,8 @@ const M3U = ({
<NumberInput
label="Refresh Interval (hours)"
description="How often to automatically refresh M3U data"
description={<>How often to automatically refresh M3U data<br />
(0 to disable automatic refreshes)</>}
{...form.getInputProps('refresh_interval')}
key={form.key('refresh_interval')}
/>