Skip to content

Commit

Permalink
#58 - small fix to previous commit
Browse files Browse the repository at this point in the history
Signed-off-by: julianbollig <[email protected]>
  • Loading branch information
julianbollig committed Feb 6, 2025
1 parent 313ba1c commit f9c60d4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions WebUI/src/assets/js/store/comfyUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ export const useComfyUi = defineStore(
)
generateIdx.value++
})
console.log('!!!!!!!!!!!!!!!', { detail: msg })
console.log('executed', { detail: msg.data })
break
case 'execution_start':
Expand Down
3 changes: 0 additions & 3 deletions WebUI/src/assets/js/store/imageGeneration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,6 @@ export const useImageGeneration = defineStore(
} else {
generatedImages.value.push(newImage)
previewIdx.value = newImage.id
console.log('#################')
console.log(previewIdx)
console.log('#################')
}
}

Expand Down
2 changes: 1 addition & 1 deletion WebUI/src/assets/js/store/stableDiffusion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const useStableDiffusion = defineStore(
if (!data.safe_check_pass) {
data.image = '/src/assets/image/nsfw_result_detected.png'
}
await imageGeneration.updateImage(data.index, data.image, false)
await imageGeneration.updateImage(data.index, data.image, false, data.params)
break
case 'step_end':
imageGeneration.currentState = 'generating'
Expand Down

0 comments on commit f9c60d4

Please sign in to comment.