We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got one wired issue on Lazyload library.
It's working fine with the image URL and its loading image and caching it.
But when a new image is replaced with an old one on the same URL, it does not fetch a new one from the same URL and only shows the old one from cache.
How can I refresh my cache with new image data?
Code which I am using right now:
<img class="disti-img" [defaultImage]="defaultImage" [lazyLoad]="selectedDistiImg">
Can anyone help me on this issue?
The text was updated successfully, but these errors were encountered:
+1
Having same issue and can't really identify / isolate the problem. The bug occurs with specific images
one that creates the bug: https://boxemag.com/wp-content/uploads/2022/11/cihad-akipa.png
(It is served as webp and on this one the top of the image is transparent.)
It seams the problem has to do with "useSrcset", like displaying an image using srcset followed by one not using it.
As a temporary workaround I found that creating 2 <img> in the template combined with a *ngIf did the trick.
<img>
*ngIf
<img *ngIf="useSrcset" ... /> <img *ngIf="!useSrcSet" ... />
Sorry, something went wrong.
No branches or pull requests
I got one wired issue on Lazyload library.
It's working fine with the image URL and its loading image and caching it.
But when a new image is replaced with an old one on the same URL, it does not fetch a new one from the same URL and only shows the old one from cache.
How can I refresh my cache with new image data?
Code which I am using right now:
<img class="disti-img" [defaultImage]="defaultImage" [lazyLoad]="selectedDistiImg">
Can anyone help me on this issue?
The text was updated successfully, but these errors were encountered: