mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-17 20:43:33 -05:00
Fixes b64 image sending and displaying
This commit is contained in:
committed by
Lincoln Stein
parent
d1dfd257f9
commit
4013e8ad6f
@@ -44,13 +44,13 @@ const systemSelector = createSelector(
|
||||
[
|
||||
(state: RootState) => state.system,
|
||||
(state: RootState) => state.options,
|
||||
intermediateImageSelector,
|
||||
(state: RootState) => state.gallery,
|
||||
activeTabNameSelector,
|
||||
],
|
||||
(
|
||||
system: SystemState,
|
||||
options: OptionsState,
|
||||
intermediateImage,
|
||||
gallery: GalleryState,
|
||||
activeTabName
|
||||
) => {
|
||||
const { isProcessing, isConnected, isGFPGANAvailable, isESRGANAvailable } =
|
||||
@@ -59,6 +59,8 @@ const systemSelector = createSelector(
|
||||
const { upscalingLevel, facetoolStrength, shouldShowImageDetails } =
|
||||
options;
|
||||
|
||||
const { intermediateImage } = gallery;
|
||||
|
||||
return {
|
||||
isProcessing,
|
||||
isConnected,
|
||||
|
||||
Reference in New Issue
Block a user