Tidy release picker profile toggle and repair display text
This commit is contained in:
@@ -968,7 +968,7 @@ export default function RequestTimelinePage() {
|
||||
<div>
|
||||
<span className="section-kicker">Results from {releaseCollector ?? (snapshot.request_type === 'tv' ? 'Sonarr' : 'Radarr')}</span>
|
||||
<h2 id="release-picker-title">Choose an available download</h2>
|
||||
<p>Search results include the collector?s rejection reasons. The assigned profile stays unchanged.</p>
|
||||
<p>Review available releases and any rejection reasons. The assigned profile stays unchanged.</p>
|
||||
</div>
|
||||
<button type="button" className="ghost-button" onClick={closeReleasePicker} disabled={busyAction?.startsWith('grab:')}>Close</button>
|
||||
</header>
|
||||
@@ -1005,9 +1005,9 @@ export default function RequestTimelinePage() {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{canIgnoreProfileLimits && <label className="feature-access-row">
|
||||
{canIgnoreProfileLimits && <label className="request-release-profile-toggle">
|
||||
<span><strong>Ignore profile limits</strong><small>Allow releases outside this title's profile. You'll confirm each download.</small></span>
|
||||
<input type="checkbox" checked={ignoreProfileLimits} disabled={Boolean(busyAction)} onChange={event => setIgnoreProfileLimits(event.target.checked)} />
|
||||
<span><strong>Ignore profile limits</strong><small>Enable selection outside quality, size, language and custom-format limits for this search. Each download requires confirmation. Other rejection reasons remain blocked.</small></span>
|
||||
</label>}
|
||||
{nextSearchOffset !== null && <button type="button" className="ghost-button" disabled={Boolean(busyAction)} onClick={() => void runAction({ id: 'search_releases', label: 'Search next missing episodes', risk: 'low', requires_confirmation: false }, nextSearchOffset)}>Search next missing episodes</button>}
|
||||
{releaseOptions.length > 0 && (
|
||||
@@ -1029,7 +1029,7 @@ export default function RequestTimelinePage() {
|
||||
{release.indexer ?? 'Unknown indexer'} · {release.seeders ?? 0} seeders · {formatBytes(release.size)}
|
||||
{typeof release.customFormatScore === 'number' ? ` · Score ${release.customFormatScore}` : ''}
|
||||
</span>
|
||||
{!!release.rejections?.length && <small className="release-rejection-reasons">{release.rejections.join(' ? ')}</small>}
|
||||
{!!release.rejections?.length && <small className="release-rejection-reasons">{release.rejections.join('; ')}</small>}
|
||||
{isBestPick && <small>This is the highest-ranked release approved by {releaseCollector ?? 'the collector'}.</small>}
|
||||
</div>
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user