Added the ability to skip redownload when marking an item as failed in the activity queue
This commit is contained in:
parent
24aa80b872
commit
062d8072dc
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue