Angular app using cloudinary image component not updating alt tags
Hi,
I have an angular app using CloudinaryImageComponent <advanced-image> and update the image when a user selects something they want to see. structured like this
— cldImage.component —
<advanced-image …. [alt]=alt></advanced-image>
— customcomponent.component —
<cldImage … [alt]=alt></cldImage>
I see the alt tag change in devtools on the advanced image but the img tag produced from CloudinaryImageComponent does not update. I see the image url changing based on what i send but the alt tag doesnt update all the way to the img tag
output:
<cldImage ng-reflect-alt="altTag2">
<advanced-image ng-reflect-alt="altTag2>
<img alt="altTag1">
</advanced-image>
</cldImage
Comments
-
@Tom or @Cloudinary Team any idea on this or who i could ask? is this a bug or am i doing something incorrectly?
0