Change quoted status link to router-link

This commit is contained in:
Sol Fisher Romanoff 2022-07-25 19:58:55 +03:00 committed by Sam Therapy
parent c372d05b25
commit 0888b9462f
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
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>