I had the same problem which was caused by the CSP directive blocking the image
Refused to load the image '<URL>' because it violates the following Content Security Policy directive: "default-src * 'unsafe-inline' gap:". Note that 'img-src' was not explicitly set, so 'default-src' is used as a fallback.
So for me a work around without reducing the CSP was to simply set the webkit-mask-image to none for the class dialoug-container
.dialog-container {
-webkit-mask-image: none;
}