Skip to content

Commit

Permalink
fix labels in names details
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed May 29, 2024
1 parent 14d344d commit 8ce3e6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/NameDetailsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<hint-tooltip>
{{ state === 'expired' ? namesHints.lastOwner : namesHints.owner }}
</hint-tooltip>
{{ isNameExpired ? "Last Owner" : "Owner" }}
{{ state === 'expired' ? "Last Owner" : "Owner" }}
</th>
<td>
<app-link :to="`/accounts/${name.owner}`">
Expand Down Expand Up @@ -102,7 +102,7 @@
<hint-tooltip>
{{ namesHints[state + 'Height'] }}
</hint-tooltip>
{{ nameStatusLabel }} Height
{{ stateLabel }} Height
</th>
<td>
<app-link
Expand All @@ -116,7 +116,7 @@
<hint-tooltip>
{{ namesHints[state + 'Time'] }}
</hint-tooltip>
{{ nameStatusLabel }}
{{ stateLabel }}
</th>
<td>
<timestamp-label
Expand Down

0 comments on commit 8ce3e6e

Please sign in to comment.