added dummy toggle to represent replacement searches

This commit is contained in:
Flaminel
2026-03-16 20:12:20 +02:00
parent 3062551d83
commit 542b8d9bf4
2 changed files with 10 additions and 8 deletions

View File

@@ -20,12 +20,14 @@
<app-card header="Search Settings">
<div class="form-stack">
<app-toggle label="Search Enabled" [(checked)]="searchEnabled"
hint="Master toggle for all searching. When disabled, no reactive or proactive searches will be performed." />
hint="Master toggle for all searching. When disabled, no replacement or proactive searches will be performed." />
@if (searchEnabled()) {
<app-number-input label="Search Interval" [(value)]="searchInterval" [min]="2" [max]="10" suffix="minutes"
hint="How often the seeker runs to process searches (1-10 minutes)"
[error]="searchIntervalError()" />
}
<app-toggle label="Enable Replacement Search" [checked]="true" [disabled]="true"
hint="Automatically searches for a replacement whenever a download is removed from an arr queue" />
</div>
</app-card>