You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into this problem and then did some investigation. I think the problem is actually in Css.url which needs to put some quotes round the string supplied in the argument. Currently it is returning: { backgroundImage = Compatible, value = "url(an image.jpg)" }
when it should be returning: { backgroundImage = Compatible, value = "url('an image.jpg')" }
The text was updated successfully, but these errors were encountered:
I ran into this problem and then did some investigation. I think the problem is actually in
Css.url
which needs to put some quotes round the string supplied in the argument. Currently it is returning:{ backgroundImage = Compatible, value = "url(an image.jpg)" }
when it should be returning:
{ backgroundImage = Compatible, value = "url('an image.jpg')" }
The text was updated successfully, but these errors were encountered: