mirror of
https://github.com/immich-app/immich.git
synced 2025-01-27 22:22:45 +01:00
style tweaks
This commit is contained in:
parent
e6f344856c
commit
ab604f4c8f
1 changed files with 28 additions and 27 deletions
|
@ -22,7 +22,7 @@
|
|||
export let onClose: () => void;
|
||||
let users: UserResponseDto[] = [];
|
||||
let selectedUsers: UserResponseDto[] = [];
|
||||
let role = AlbumUserRole.Editor
|
||||
let role = AlbumUserRole.Editor;
|
||||
|
||||
const dispatch = createEventDispatcher<{
|
||||
select: AddUserDto[];
|
||||
|
@ -116,10 +116,10 @@
|
|||
</div>
|
||||
|
||||
{#if users.length > 0}
|
||||
<div class="flex items-center gap-2 py-3">
|
||||
Add users as:
|
||||
<div class="flex items-baseline gap-2 py-3">
|
||||
<p>Add users as:</p>
|
||||
<div class="flex-grow">
|
||||
<Dropdown
|
||||
class="flex-grow"
|
||||
title="Role"
|
||||
options={[
|
||||
{ title: 'Editor', value: AlbumUserRole.Editor },
|
||||
|
@ -127,9 +127,10 @@
|
|||
]}
|
||||
selectedOption={{ title: 'Editor', value: AlbumUserRole.Editor }}
|
||||
render={({ title }) => title}
|
||||
on:select={({ detail: { value } }) => role = value}
|
||||
on:select={({ detail: { value } }) => (role = value)}
|
||||
/>
|
||||
<div class="flex-grow">
|
||||
</div>
|
||||
<div class="w-[50%]">
|
||||
<Button
|
||||
size="sm"
|
||||
fullwidth
|
||||
|
|
Loading…
Reference in a new issue