forked from Mirrors/Dispatcharr
Add Enabled/Disabled label to Advanced toggle
Added dynamic label to the Advanced (Cron Expression) switch to match the Scheduled Backups toggle above it. Now displays: Scheduled Backups [Enabled] Advanced (Cron Expression) [Enabled] Provides consistent UI pattern and clearer status indication.
This commit is contained in:
parent
53159bd420
commit
3c76c72479
1 changed files with 1 additions and 0 deletions
|
|
@ -617,6 +617,7 @@ export default function BackupManager() {
|
|||
<Switch
|
||||
checked={advancedMode}
|
||||
onChange={(e) => setAdvancedMode(e.currentTarget.checked)}
|
||||
label={advancedMode ? 'Enabled' : 'Disabled'}
|
||||
disabled={!schedule.enabled}
|
||||
size="sm"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue