mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui): handle new image origin/category setup
- Update all thunks & network related things - Update gallery What I have not done yet is rename the gallery tabs and the relevant slices, but I believe the functionality is all there. Also I fixed several bugs along the way but couldn't really commit them separately bc I was refactoring. Can't remember what they were, but related to the gallery image switching.
This commit is contained in:
committed by
Kent Keirsey
parent
d78e3572e3
commit
29fcc92da9
@@ -64,7 +64,7 @@ export const buildImageToImageGraph = (state: RootState): Graph => {
|
||||
model,
|
||||
image: {
|
||||
image_name: initialImage?.image_name,
|
||||
image_type: initialImage?.image_type,
|
||||
image_origin: initialImage?.image_origin,
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ export const buildImg2ImgNode = (
|
||||
|
||||
imageToImageNode.image = {
|
||||
image_name: initialImage.name,
|
||||
image_type: initialImage.type,
|
||||
image_origin: initialImage.type,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@ export const buildInpaintNode = (
|
||||
|
||||
inpaintNode.image = {
|
||||
image_name: initialImage.name,
|
||||
image_type: initialImage.type,
|
||||
image_origin: initialImage.type,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user