mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Use basename as title if empty when scraping by fragment (#3040)
* Fallback to file basename if title empty in scrape * Populate dialog from basename if title empty
This commit is contained in:
@@ -476,7 +476,7 @@ export const SceneEditPanel: React.FC<IProps> = ({
|
||||
setScraper(undefined);
|
||||
onSceneSelected(s);
|
||||
}}
|
||||
name={formik.values.title || ""}
|
||||
name={formik.values.title || objectTitle(scene) || ""}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user