mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 08:54:10 +01:00
Fix unsetting performer gender (#1606)
* Fix unset performer gender * Fix button group appearing over select menu
This commit is contained in:
parent
8f3036b351
commit
c7d2ddc5db
3 changed files with 3 additions and 1 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
* Added de-DE language option. ([#1578](https://github.com/stashapp/stash/pull/1578))
|
* Added de-DE language option. ([#1578](https://github.com/stashapp/stash/pull/1578))
|
||||||
|
|
||||||
### 🐛 Bug fixes
|
### 🐛 Bug fixes
|
||||||
|
* Fix unsetting performer gender not working correctly. ([#1606](https://github.com/stashapp/stash/pull/1606))
|
||||||
* Fix is missing date scene criterion causing invalid SQL. ([#1577](https://github.com/stashapp/stash/pull/1577))
|
* Fix is missing date scene criterion causing invalid SQL. ([#1577](https://github.com/stashapp/stash/pull/1577))
|
||||||
* Fix rendering of carousel images on Apple devices. ([#1562](https://github.com/stashapp/stash/pull/1562))
|
* Fix rendering of carousel images on Apple devices. ([#1562](https://github.com/stashapp/stash/pull/1562))
|
||||||
* Show New and Delete buttons in mobile view. ([#1539](https://github.com/stashapp/stash/pull/1539))
|
* Show New and Delete buttons in mobile view. ([#1539](https://github.com/stashapp/stash/pull/1539))
|
||||||
|
|
@ -466,7 +466,7 @@ export const PerformerEditPanel: React.FC<IPerformerDetails> = ({
|
||||||
function getUpdateValues(values: InputValues): GQL.PerformerUpdateInput {
|
function getUpdateValues(values: InputValues): GQL.PerformerUpdateInput {
|
||||||
return {
|
return {
|
||||||
...values,
|
...values,
|
||||||
gender: stringToGender(values.gender),
|
gender: stringToGender(values.gender) ?? null,
|
||||||
rating: values.rating ?? null,
|
rating: values.rating ?? null,
|
||||||
weight: Number(values.weight),
|
weight: Number(values.weight),
|
||||||
id: performer.id ?? "",
|
id: performer.id ?? "",
|
||||||
|
|
|
||||||
|
|
@ -229,6 +229,7 @@ div.react-select__menu,
|
||||||
div.dropdown-menu {
|
div.dropdown-menu {
|
||||||
background-color: $secondary;
|
background-color: $secondary;
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
|
z-index: 3;
|
||||||
|
|
||||||
.react-select__option,
|
.react-select__option,
|
||||||
.dropdown-item {
|
.dropdown-item {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue