mirror of https://github.com/stashapp/stash.git
Include sceneIDs when generating (#2087)
This commit is contained in:
parent
7c44a9c993
commit
2460664dc3
|
@ -163,7 +163,10 @@ export const GenerateDialog: React.FC<ISceneGenerateDialog> = ({
|
|||
|
||||
async function onGenerate() {
|
||||
try {
|
||||
await mutateMetadataGenerate(options);
|
||||
await mutateMetadataGenerate({
|
||||
...options,
|
||||
sceneIDs: selectedIds,
|
||||
});
|
||||
Toast.success({
|
||||
content: intl.formatMessage(
|
||||
{ id: "config.tasks.added_job_to_queue" },
|
||||
|
|
Loading…
Reference in New Issue