Skip to content

Commit

Permalink
fix: user list when sharing an album
Browse files Browse the repository at this point in the history
  • Loading branch information
martabal committed Jan 19, 2024
1 parent d5af357 commit 95ec857
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion open-api/immich-openapi-specs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6221,7 +6221,7 @@
"info": {
"title": "Immich",
"description": "Immich API",
"version": "1.93.0",
"version": "1.93.1",
"contact": {}
},
"tags": [],
Expand Down
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 95ec857

Please sign in to comment.