Skip to content

Commit

Permalink
Merge pull request #291 from strideynet/kev-fix-user-no-avatar-shows-…
Browse files Browse the repository at this point in the history
…loading

Fix user without avatar is shows loading animation
  • Loading branch information
KevSlashNull authored Nov 22, 2024
2 parents 84791c7 + b7a4ef2 commit 4392e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/admin/components/shared/avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ watch(() => props.did, updateUrl);
alt=""
/>
<div
v-else-if="loading"
v-else-if="loading && did && hasAvatar"
class="loading-flash"
:style="{ height: `${size}px`, width: `${size}px` }"
></div>
Expand Down

0 comments on commit 4392e67

Please sign in to comment.