mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 01:03:32 +01:00
Fixed: Can ignore queue items with unknown book
This commit is contained in:
parent
1f06c4f4e2
commit
a877c5b25d
1 changed files with 1 additions and 1 deletions
|
|
@ -336,7 +336,7 @@ class QueueRow extends Component {
|
|||
<RemoveQueueItemModal
|
||||
isOpen={isRemoveQueueItemModalOpen}
|
||||
sourceTitle={title}
|
||||
canIgnore={!!(author && book)}
|
||||
canIgnore={!!author}
|
||||
onRemovePress={this.onRemoveQueueItemModalConfirmed}
|
||||
onModalClose={this.onRemoveQueueItemModalClose}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue