mirror of
https://github.com/invoke-ai/InvokeAI
synced 2025-07-25 12:55:55 +00:00
fix(ui): denoise percentage
This commit is contained in:
@ -107,12 +107,12 @@ export const systemSlice = createSlice({
|
||||
* Generator Progress
|
||||
*/
|
||||
builder.addCase(socketGeneratorProgress, (state, action) => {
|
||||
const { step, total_steps, progress_image, session_id, batch_id } = action.payload.data;
|
||||
const { step, total_steps, progress_image, session_id, batch_id, percentage } = action.payload.data;
|
||||
|
||||
state.denoiseProgress = {
|
||||
step,
|
||||
total_steps,
|
||||
percentage: step / total_steps,
|
||||
percentage,
|
||||
progress_image,
|
||||
session_id,
|
||||
batch_id,
|
||||
|
Reference in New Issue
Block a user