mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +00:00
Only output Link if link has an href (else page blows up)
This commit is contained in:
@ -90,7 +90,7 @@ export default function BlockElementWrapper({data, metaData, slot, linkProps, ch
|
|||||||
|
|
||||||
let rs = children;
|
let rs = children;
|
||||||
|
|
||||||
if (link)
|
if (link && link.href)
|
||||||
{
|
{
|
||||||
rs = <Link to={link.href} target={link.target} style={{color: "#546E7A"}} {...linkProps}>{rs}</Link>;
|
rs = <Link to={link.href} target={link.target} style={{color: "#546E7A"}} {...linkProps}>{rs}</Link>;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user