mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
fix(rating): show link only if valid
This commit is contained in:
parent
e70109576b
commit
54212e19b1
2 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ const hidePopover = () => {
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
</div>
|
</div>
|
||||||
<NuxtLink
|
<NuxtLink
|
||||||
v-if="item.positive === 'Link'"
|
v-if="item.isValid && item.positive === 'Link'"
|
||||||
:to="item.value"
|
:to="item.value"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
external
|
external
|
||||||
|
|
Loading…
Reference in a new issue