mirror of
https://github.com/stashapp/stash.git
synced 2026-04-17 04:24:07 +02:00
Disable tag popover for create tag option (#3429)
This commit is contained in:
parent
83cb51ec47
commit
8bd5f91e58
1 changed files with 3 additions and 1 deletions
|
|
@ -873,8 +873,10 @@ export const TagSelect: React.FC<IFilterProps & { excludeIds?: string[] }> = (
|
|||
};
|
||||
}
|
||||
|
||||
const id = optionProps.data.__isNew__ ? "" : optionProps.data.value;
|
||||
|
||||
return (
|
||||
<TagPopover id={optionProps.data.value}>
|
||||
<TagPopover id={id}>
|
||||
<reactSelectComponents.Option {...thisOptionProps} />
|
||||
</TagPopover>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue