mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
fix(ui): canvas image error placeholder never disappears
This commit is contained in:
@@ -123,11 +123,11 @@ export class CanvasStagingAreaModule extends CanvasModuleBase {
|
||||
hideProgressIfSameSession();
|
||||
} else if (this.image.isLoading) {
|
||||
// noop - just wait for the image to load
|
||||
} else if (this.image.isError) {
|
||||
hideProgressIfSameSession();
|
||||
} else if (this.image.state.image.image_name !== image.image_name) {
|
||||
await this.image.update({ ...this.image.state, image }, true);
|
||||
hideProgressIfSameSession();
|
||||
} else if (this.image.isError) {
|
||||
hideProgressIfSameSession();
|
||||
}
|
||||
this.image.konva.group.visible(shouldShowStagedImage);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user