mirror of
https://github.com/stashapp/stash.git
synced 2026-05-08 12:32:29 +02:00
Overwrite new performer image after clearing current image (#1321)
This commit is contained in:
parent
79a180ba73
commit
1767390e0d
2 changed files with 4 additions and 2 deletions
|
|
@ -24,6 +24,7 @@
|
||||||
* Change performer text query to search by name and alias only.
|
* Change performer text query to search by name and alias only.
|
||||||
|
|
||||||
### 🐛 Bug fixes
|
### 🐛 Bug fixes
|
||||||
|
* Fix scraped performer image not updating after clearing the current image when creating a new performer.
|
||||||
* Fix error preventing adding a new library path when an existing library path is missing.
|
* Fix error preventing adding a new library path when an existing library path is missing.
|
||||||
* Fix whitespace in query string returning all objects.
|
* Fix whitespace in query string returning all objects.
|
||||||
* Fix hang on Login page when not connected to internet.
|
* Fix hang on Login page when not connected to internet.
|
||||||
|
|
|
||||||
|
|
@ -311,9 +311,10 @@ export const PerformerEditPanel: React.FC<IPerformerDetails> = ({
|
||||||
// image is a base64 string
|
// image is a base64 string
|
||||||
// #404: don't overwrite image if it has been modified by the user
|
// #404: don't overwrite image if it has been modified by the user
|
||||||
// overwrite if not new since it came from a dialog
|
// overwrite if not new since it came from a dialog
|
||||||
// otherwise follow existing behaviour
|
// overwrite if image was cleared (`null`)
|
||||||
|
// otherwise follow existing behaviour (`undefined`)
|
||||||
if (
|
if (
|
||||||
(!isNew || formik.values.image === undefined) &&
|
(!isNew || [null, undefined].includes(formik.values.image)) &&
|
||||||
state.image !== undefined
|
state.image !== undefined
|
||||||
) {
|
) {
|
||||||
const imageStr = state.image;
|
const imageStr = state.image;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue