Change quoted status link to router-link
ci/woodpecker/pr/woodpecker Pipeline was successful Details

This commit is contained in:
Sol Fisher Romanoff 2022-07-25 19:58:55 +03:00
parent a2541bb4e0
commit 86fc043e54
Signed by untrusted user who does not match committer: nbsp
GPG Key ID: 9D3F2B64F2341B62
2 changed files with 4 additions and 14 deletions

View File

@ -14,15 +14,7 @@ const QuoteCard = {
computed: {
...mapGetters([
'mergedConfig'
]),
statusLink () {
return {
name: 'conversation',
params: {
id: this.status.id
}
}
}
])
},
components: {
QuoteCardContent

View File

@ -1,15 +1,13 @@
<template>
<div>
<a
<router-link
class="quote-card"
:href="$router.resolve(statusLink).href"
target="_blank"
rel="noopener"
:to="{ name: 'conversation', params: { id: status.id } }"
>
<QuoteCardContent
:status="status"
/>
</a>
</router-link>
</div>
</template>