fix(ui): when session is complete, null out progress image

This may cause minor gallery jumpiness at the very end of processing, but is necessary to prevent the progress image from sticking around if the last node in a session did not have an image output.
This commit is contained in:
psychedelicious 2023-05-29 17:26:57 +10:00 committed by Kent Keirsey
parent e4705d5ce7
commit bce33ea62e

View File

@ -348,6 +348,7 @@ export const systemSlice = createSlice({
state.currentStep = 0; state.currentStep = 0;
state.totalSteps = 0; state.totalSteps = 0;
state.statusTranslationKey = 'common.statusConnected'; state.statusTranslationKey = 'common.statusConnected';
state.progressImage = null;
}); });
/** /**