Move is active to bottom of form.

This commit is contained in:
SergeantPanda 2025-05-07 09:13:13 -05:00
parent b5cdf3ceb2
commit f5f47005aa

View file

@ -128,6 +128,14 @@ const EPG = ({ epg = null, isOpen, onClose }) => {
]}
/>
<NumberInput
label="Refresh Interval (hours)"
description={<>How often to automatically refresh EPG data<br />
(0 to disable automatic refreshes)</>}
{...form.getInputProps('refresh_interval')}
key={form.key('refresh_interval')}
/>
<Checkbox
id="is_active"
name="is_active"
@ -137,14 +145,6 @@ const EPG = ({ epg = null, isOpen, onClose }) => {
key={form.key('is_active')}
/>
<NumberInput
label="Refresh Interval (hours)"
description={<>How often to automatically refresh EPG data<br />
(0 to disable automatic refreshes)</>}
{...form.getInputProps('refresh_interval')}
key={form.key('refresh_interval')}
/>
<Flex mih={50} gap="xs" justify="flex-end" align="flex-end">
<Button
type="submit"