tabler-react icon indicating copy to clipboard operation
tabler-react copied to clipboard

GalleryCard.Image target '_blank' doesn't work

Open sergibc opened this issue 5 years ago • 1 comments

Having the following: <GalleryCard.Image src={imageFile} href="destionation_url" target="_blank" />

The "destination_url" is opened in the same page.

sergibc avatar May 17 '20 09:05 sergibc

@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

dannypaz avatar Jun 23 '20 06:06 dannypaz