mirror of
https://github.com/stashapp/stash.git
synced 2026-02-10 17:35:45 +01:00
Use visual files to populate image file names (#4323)
This commit is contained in:
parent
413311711f
commit
599deb71b6
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ export const DeleteImagesDialog: React.FC<IDeleteImageDialogProps> = (
|
|||
const deletedFiles: string[] = [];
|
||||
|
||||
props.selected.forEach((s) => {
|
||||
const paths = s.files.map((f) => f.path);
|
||||
const paths = s.visual_files.map((f) => f.path);
|
||||
deletedFiles.push(...paths);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue