Skip to content

Commit

Permalink
fix: show correct pending item status
Browse files Browse the repository at this point in the history
  • Loading branch information
CedrikNikita committed Aug 15, 2024
1 parent e72b8e4 commit 89e7b3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/popup/components/NameItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class="pending"
>
<PendingIcon class="pending-icon" />
{{ $t('common.pending') }}...
{{ $t('common.pending') }}
</div>
<div
v-else
Expand Down
2 changes: 1 addition & 1 deletion src/popup/components/TransactionDetailsBase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<AnimatedPending
class="pending-icon"
/>
{{ $t('common.pending') }}...
{{ $t('common.pending') }}
</template>
</DetailsItem>
<DetailsItem
Expand Down
2 changes: 1 addition & 1 deletion src/popup/components/TransactionLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
v-if="transaction.pending"
:class="{ secondary: !label.customPending || showTransactionOwner }"
>
{{ label.customPending || $t('common.pending') }}...
{{ `${label.customPending}...` || $t('common.pending') }}
</span>
<span
v-else-if="!showTransactionOwner"
Expand Down

0 comments on commit 89e7b3a

Please sign in to comment.