fix: pdf in new tab
Some checks are pending
Deploy / deploy (push) Waiting to run

This commit is contained in:
Benno Tielen 2026-06-24 07:52:49 +02:00
parent 42d5f92b2b
commit e96d04c317

View file

@ -24,7 +24,12 @@ type ItemGroupProps = {
const Item = ({href, title, description, icon, onClick}: ItemProps) => { const Item = ({href, title, description, icon, onClick}: ItemProps) => {
return ( return (
<Link href={href} className={styles.item} onClick={onClick}> <Link
href={href}
className={styles.item}
onClick={onClick}
target={href.includes("/api") ? "_blank" : undefined}
>
{icon && {icon &&
<div className={styles.itemIcon}> <div className={styles.itemIcon}>
</div> </div>