mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 20:28:40 -05:00
fix(ui): rectangular avatars getting stretched (#2782)
This commit is contained in:
@@ -534,7 +534,7 @@ const AdvancedRequester: React.FC<AdvancedRequesterProps> = ({
|
||||
<img
|
||||
src={selectedUser.avatar}
|
||||
alt=""
|
||||
className="h-6 w-6 flex-shrink-0 rounded-full"
|
||||
className="h-6 w-6 flex-shrink-0 rounded-full object-cover"
|
||||
/>
|
||||
<span className="ml-3 block">
|
||||
{selectedUser.displayName}
|
||||
@@ -584,7 +584,7 @@ const AdvancedRequester: React.FC<AdvancedRequesterProps> = ({
|
||||
<img
|
||||
src={user.avatar}
|
||||
alt=""
|
||||
className="h-6 w-6 flex-shrink-0 rounded-full"
|
||||
className="h-6 w-6 flex-shrink-0 rounded-full object-cover"
|
||||
/>
|
||||
<span className="ml-3 block flex-shrink-0">
|
||||
{user.displayName}
|
||||
|
||||
Reference in New Issue
Block a user