We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca374c commit f129d0bCopy full SHA for f129d0b
src/inputs/anchors/PAnchor.vue
@@ -67,7 +67,7 @@ const props = withDefaults(defineProps<AnchorProps>(), {
67
68
const validateTarget = () => {
69
if (props.disabled) return '_self';
70
- if (props.iconName === 'ic_external-link' && props.hideIcon) return '_blank';
+ if (props.iconName === 'ic_external-link' && !props.hideIcon) return '_blank';
71
return '_self';
72
};
73
const anchorRef = ref<HTMLElement|null>(null);
0 commit comments