Added the ability to skip redownload when marking an item as failed in the activity queue

This commit is contained in:
PearsonFlyer 2023-07-15 14:56:31 -04:00
parent 24aa80b872
commit 062d8072dc
1 changed files with 3 additions and 2 deletions

View File

@ -129,7 +129,7 @@ class RemoveQueueItemsModal extends Component {
</FormGroup>
{
blocklist &&
blocklist ?
<FormGroup>
<FormLabel>{translate('SkipRedownload')}</FormLabel>
<FormInputGroup
@ -137,9 +137,10 @@ class RemoveQueueItemsModal extends Component {
name="skipRedownload"
value={skipRedownload}
helpText={translate('SkipRedownloadHelpText')}
onChange={this.onSkipReDownloadChange}
onChange={this.onSkipRedownloadChange}
/>
</FormGroup>
: null
}
</ModalBody>