mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
fix: show user small picture and fallback when loading (#63)
* fix: show user small picture and fallback when loading * fix: add alt to avatar * fix: fixed version
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
<%# locals: (avatar_url: nil, initials: "U", lazy: false) %>
|
||||
|
||||
<% if avatar_url.present? %>
|
||||
<%= image_tag avatar_url, class: "rounded-full w-full h-full object-cover", loading: lazy ? "lazy" : "eager" %>
|
||||
<% else %>
|
||||
<div class="w-full h-full bg-surface-inset hover:bg-surface-inset-hover text-secondary rounded-full flex items-center justify-center text-lg uppercase"><%= initials %></div>
|
||||
<% end %>
|
||||
<div class="w-full h-full bg-surface-inset hover:bg-surface-inset-hover text-secondary rounded-full flex items-center justify-center text-lg uppercase relative">
|
||||
<%= initials %>
|
||||
<% if avatar_url.present? %>
|
||||
<%= image_tag avatar_url, class: "absolute inset-0 rounded-full w-full h-full object-cover", loading: lazy ? "lazy" : "eager" %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user