Skip to content

Commit

Permalink
fix: show full address on tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Jan 4, 2024
1 parent 992ce6d commit e98dfe8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/transaction/summary/AddressEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<div class="entry-info">
<div class="entry-text-info">
<div class="account-label">{{ accountLabel }}</div>
<div class="account-address">
{{ address }}
<div v-tooltip="{ content: address, maxWidth: 'none' }" class="account-address">
{{ shortenAddress(address, 6) }}
</div>
</div>
<AddressAvatar class="account-avatar" :address="address">
Expand All @@ -26,6 +26,7 @@ import type { TransactionDestination } from "@/store/destinations";
import type { PropType } from "vue";
import { useOnboardStore } from "@/store/onboard";
import { shortenAddress } from "@/utils/formatters";
const props = defineProps({
label: {
Expand Down

0 comments on commit e98dfe8

Please sign in to comment.