mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
Fix merge dialog select boxes display issue (#5299)
This commit is contained in:
parent
c45ae068fc
commit
cef5b46f93
3 changed files with 5 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue