Skip to content

Commit

Permalink
Merge pull request #2388 from torusresearch/fix/ui
Browse files Browse the repository at this point in the history
Fix/UI
  • Loading branch information
tanguyenvn authored Feb 18, 2025
2 parents 9e26ec2 + 4668bbf commit 68d49c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/WalletAccount/AccountMenu/AccountMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<v-list-item>
<v-list-item-avatar class="ml-2 mr-3">
<img
:src="userInfo.profileImage"
:src="userInfo.profileImage || '/images/person.jpeg'"
class="align-start"
:alt="userName"
onerror="if (!this.src.includes('/images/person.jpeg')) this.src = '/images/person.jpeg';"
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Popup/PopupWidget/PopupWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</div>
<img
v-else
:src="userInfo.profileImage"
:src="userInfo.profileImage || '/images/person.jpeg'"
:alt="`${userInfo.verifierId} Avatar`"
onerror="if (!this.src.includes('/images/person.jpeg')) this.src = '/images/person.jpeg';"
/>
Expand Down
3 changes: 3 additions & 0 deletions src/icons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ export default {
email_password: {
component: VerifierEmailIcon,
},
email_passwordless: {
component: VerifierEmailIcon,
},
jwt: {
component: VerifierJwtIcon,
},
Expand Down

0 comments on commit 68d49c0

Please sign in to comment.