Change quoted status link to router-link
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful

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: { computed: {
...mapGetters([ ...mapGetters([
'mergedConfig' 'mergedConfig'
]), ])
statusLink () {
return {
name: 'conversation',
params: {
id: this.status.id
}
}
}
}, },
components: { components: {
QuoteCardContent QuoteCardContent

View file

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