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:16 -04:00
parent 38b3dcad95
commit 24aa80b872
1 changed files with 3 additions and 2 deletions

View File

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