Fix merge dialog select boxes display issue (#5299)

This commit is contained in:
WithoutPants 2024-09-25 14:04:42 +10:00 committed by GitHub
parent c45ae068fc
commit cef5b46f93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 0 deletions

View file

@ -771,6 +771,7 @@ export const SceneMergeModal: React.FC<ISceneMergeModalProps> = ({
isMulti
onSelect={(items) => setSourceScenes(items)}
values={sourceScenes}
menuPortalTarget={document.body}
/>
</Col>
</Form.Group>
@ -803,6 +804,7 @@ export const SceneMergeModal: React.FC<ISceneMergeModalProps> = ({
<SceneSelect
onSelect={(items) => setDestScene(items)}
values={destScene}
menuPortalTarget={document.body}
/>
</Col>
</Form.Group>

View file

@ -106,6 +106,7 @@ export const TagMergeModal: React.FC<ITagMergeModalProps> = ({
onSelect={(items) => setSrc(items)}
values={src}
excludeIds={tag?.id ? [tag.id] : []}
menuPortalTarget={document.body}
/>
</Col>
</Form.Group>
@ -129,6 +130,7 @@ export const TagMergeModal: React.FC<ITagMergeModalProps> = ({
onSelect={(items) => setDest(items[0])}
values={dest ? [dest] : undefined}
excludeIds={tag?.id ? [tag.id] : []}
menuPortalTarget={document.body}
/>
</Col>
</Form.Group>

View file

@ -29,6 +29,7 @@
* Scene Player now allows interacting with the controls before playing video, and errors no longer prevent interacting with the Scene Player. ([#5145](https://github.com/stashapp/stash/pull/5145))
### 🐛 Bug fixes
* **[0.27.1]** Fixed dropdowns not displaying correctly in the merge dialogs.
* Fixed videos and images having incorrect dimensions when the orientation flag is set to a non-default value during scan. ([#5188](https://github.com/stashapp/stash/pull/5188), [#5189](https://github.com/stashapp/stash/pull/5189))
* Fixed mp4 videos being incorrectly transcoded when the file has opus audio codec. ([#5030](https://github.com/stashapp/stash/pull/5030))
* Fixed o-history being imported as view-history when importing from JSON. ([#5127](https://github.com/stashapp/stash/pull/5127))