diff --git a/src/components/cards/CardItem.vue b/src/components/cards/CardItem.vue index 4e498e8c0..4ad86443c 100644 --- a/src/components/cards/CardItem.vue +++ b/src/components/cards/CardItem.vue @@ -20,7 +20,7 @@

- {{ card.title }} + {{ card.title }}

$2$5', + ) + }, + }, }, mixins: [Color, labelStyle], props: { @@ -207,7 +215,10 @@ export default { card = this.$refs[`card${card}`] card.focus() }, - openCard() { + openCard(event) { + if (event.target.tagName.toLowerCase() === 'a') { + return + } if (this.dragging || this.hasSelection()) { return } @@ -351,6 +362,11 @@ export default { word-wrap: break-word; padding-left: 4px; align-self: center; + + :deep(a) { + text-decoration: underline; + } + &.editable { span { cursor: text;