tabler-react
tabler-react copied to clipboard
GalleryCard.Image target '_blank' doesn't work
Having the following:
<GalleryCard.Image src={imageFile} href="destionation_url" target="_blank" />
The "destination_url" is opened in the same page.
@sergibc target needs to be added to the component https://github.com/tabler/tabler-react/blob/master/src/components/GalleryCard/GalleryCardImage.react.js
As a workaround, I have wrapped the GalleyCard in an <a> and removed styling of the <a> tag.
<a href={v} target="_blank">
<GalleryCard className="w-1/5">
<GalleryCard.Image src={v} />
</GalleryCard>
</a>
Hope this helps