Fix actions modal link target
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
@ -29,7 +29,7 @@ const ActionsModal: React.FC<IActionsModal> = ({ status, actions, onClick, onClo
|
||||
const { icon = null, text, meta = null, href = '#', to, destructive } = action;
|
||||
|
||||
const Comp = href === '#' ? to ? Link : 'button' : 'a';
|
||||
const compProps = href === '#' ? to ? { to, onClick } : { onClick } : { href: href, rel: 'noopener' };
|
||||
const compProps = href === '#' ? to ? { to, onClick } : { onClick } : { href: href, rel: 'noopener', target: '_blank' };
|
||||
|
||||
return (
|
||||
<li key={`${text}-${i}`}>
|
||||
|
||||
Reference in New Issue
Block a user