Files
growstuff/app/views/members/_tiny.haml
Daniel O'Connor 78eaf0b4c9 Address minor accessibility issues: Image elements do not have [alt] attributes (#3561)
* Add alt tags

* Update app/views/members/_tiny.haml

* Update app/views/home/_plantings.html.haml

* Use crop_name as this is a searchkick record
2024-01-17 22:02:09 +10:30

11 lines
232 B
Plaintext

%span.chip.member-chip
- if member.discarded?
= icon 'fas', 'user-times'
= member
- else
= link_to member do
= image_tag(avatar_uri(member, 100), alt: member.login_name, height: 50, width: 50)
= member