There is a feature in the app I'm working on that allows a user to open an image in a new window. It's implemented the following way:
const link = 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAA...';
window.open(link)
It works perfectly fine in firefox, but when I do that in chrome it redirects me to an empty page with about:blank
url? How do I fix that behaviour?