Improve Advanced toggle layout alignment

Changed Advanced (Cron Expression) from a labeled switch to a proper
Group with space-between layout matching the Scheduled Backups row above.

Now displays as:
  Scheduled Backups          [Enabled toggle]
  Advanced (Cron Expression) [Toggle]

This creates consistent visual alignment with both text labels on the left
and toggle switches on the right.
This commit is contained in:
Jim McBride 2025-12-09 08:35:55 -06:00
parent 901cc09e38
commit 53159bd420
No known key found for this signature in database
GPG key ID: E02BFB7AB3C895D7

View file

@ -612,11 +612,11 @@ export default function BackupManager() {
/>
</Group>
<Group justify="flex-start">
<Group justify="space-between">
<Text size="sm" fw={500}>Advanced (Cron Expression)</Text>
<Switch
checked={advancedMode}
onChange={(e) => setAdvancedMode(e.currentTarget.checked)}
label="Advanced (Cron Expression)"
disabled={!schedule.enabled}
size="sm"
/>