mirror of
https://github.com/stashapp/stash.git
synced 2025-12-24 09:12:39 +01:00
Only show one modal when tagging performers (#2223)
This commit is contained in:
parent
e1cf695b65
commit
df1478c25d
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ const PerformerTaggerList: React.FC<IPerformerTaggerListProps> = ({
|
|||
{modalPerformer && (
|
||||
<PerformerModal
|
||||
closeModal={() => setModalPerformer(undefined)}
|
||||
modalVisible={modalPerformer !== undefined}
|
||||
modalVisible={modalPerformer.stored_id === performer.id}
|
||||
performer={modalPerformer}
|
||||
onSave={handlePerformerUpdate}
|
||||
excludedPerformerFields={config.excludedPerformerFields}
|
||||
|
|
|
|||
Loading…
Reference in a new issue