Stable Diffusion: reference image toast shows the description (tag/path as fallback)
| @@ -5261,7 +5261,7 @@ async function generateComfyImageCommon(prompt, negativePrompt, signal, basePath | ||
| 5261 | 5261 | const refBase64 = (refImage && await fetchReferenceImageBase64(refImage)) || PNG_PIXEL; |
| 5262 | 5262 | if (refBase64 !== PNG_PIXEL) { |
| 5263 | 5263 | console.log(`SD: workflow reference image: "${refImage.tag}" (${refImage.path})`); |
| 5264 | 5264 | toastr.info(`Reference image: ${refImage.description || refImage.tag || refImage.path}`, 'Image Generation'); |
| 5265 | 5265 | } else { |
| 5266 | 5266 | console.warn('SD: workflow uses %reference_image% but no library image was available; sending a transparent pixel'); |
| 5267 | 5267 | } |