Skip to content

Commit

Permalink
NameList: Fix showing of pending name
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Feb 7, 2022
1 parent d1263c7 commit f86cd50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/aens/NameList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ListItemAccount
v-for="entry in owned.names"
:key="entry.name"
:address="entry.info.ownership.current"
:address="entry.accountId || entry.info.ownership.current"
:name="entry.name"
:to="{ name: 'name-details', params: { name: entry.name } }"
subtitle="address"
Expand Down
1 change: 0 additions & 1 deletion src/store/plugins/ui/names.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ export default (store) => {
...otherTx,
...tx,
pending: true,
owner: tx.accountId,
})),
(error) => {
if (!isAccountNotFoundError(error)) handleUnknownError(error);
Expand Down

0 comments on commit f86cd50

Please sign in to comment.