Skip to content

Commit

Permalink
fix(web): user list when sharing an album (#6500)
Browse files Browse the repository at this point in the history
fix: user list when sharing an album

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
  • Loading branch information
martabal and alextran1502 committed Jan 19, 2024
1 parent 07b874e commit d15c443
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/src/lib/components/album-page/user-selection-modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@
class="flex w-full place-items-center gap-4 px-5 py-4 transition-all hover:bg-gray-200 dark:hover:bg-gray-700"
>
{#if selectedUsers.includes(user)}
<span
class="flex h-12 w-12 place-content-center place-items-center rounded-full border bg-immich-primary text-3xl text-white dark:border-immich-dark-gray dark:bg-immich-dark-primary dark:text-immich-dark-bg"
>✓</span
<div
class="flex h-10 w-10 items-center justify-center rounded-full border bg-immich-primary text-3xl text-white dark:border-immich-dark-gray dark:bg-immich-dark-primary dark:text-immich-dark-bg"
>
<p>✓</p>
</div>
{:else}
<UserAvatar {user} size="md" />
{/if}
Expand Down

0 comments on commit d15c443

Please sign in to comment.