Open ecRobertEngel opened 1 year ago
Hi @ecRobertEngel , what are some examples of DIS links that did not work for you? Thanks.
I have manipulate a sample product image from the Demo Store.
We had this issue happen with the dynamic image component and the parameter 100vw
on MAC devices with retina displays.
Edit: to be completely safe it might even make sense to add a Min limitation of 10px. But that is I think less likely to happen.
This issue has been linked to a new work item: W-13726290
The DynamicImage component can produce DIS links that are not working due to DIS limitations. This is caused by
mapWidthsToSrcSet
which calculates the widths. DIS has a size limitation of 3000px this can easily be exceeded by devices with high pixel density or ultra wide screen devices if the passed width is100vw
. A simpleMath.min
resolved the issue for us.