Skip to content

Commit

Permalink
Merge pull request #2969 from threefoldtech/development_2.6_fix_count…
Browse files Browse the repository at this point in the history
…ry_chip

Fix country chip
  • Loading branch information
zaelgohary authored Jun 13, 2024
2 parents bfd5029 + db2775d commit b17a71c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</VChip>
</template>
</VTooltip>
<VTooltip text="Node Country" v-if="node && node.location.country" location="left">
<VTooltip text="Node Country" v-if="node && node.location.country.trim().length > 0" location="left">
<template #activator="{ props }">
<VChip class="ml-2" size="x-small" v-bind="props">
<span class="font-weight-bold" v-text="node?.location.country" />
Expand Down

0 comments on commit b17a71c

Please sign in to comment.