1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-13 00:50:13 +00:00

refactor: run formatter

This commit is contained in:
Elias Schneider
2025-01-19 15:41:16 +01:00
parent d5dd118a3f
commit 692ff70c91
129 changed files with 691 additions and 692 deletions

View File

@@ -60,7 +60,7 @@
</svelte:head>
<div class="flex items-center justify-between">
<a class="text-muted-foreground flex text-sm" href="/settings/admin/user-groups"
<a class="flex text-sm text-muted-foreground" href="/settings/admin/user-groups"
><LucideChevronLeft class="h-5 w-5" /> Back</a
>
{#if !!userGroup.ldapId}
@@ -92,9 +92,8 @@
/>
{/await}
<div class="mt-5 flex justify-end">
<Button
disabled={!!userGroup.ldapId}
on:click={() => updateUserGroupUsers(userGroup.userIds)}>Save</Button
<Button disabled={!!userGroup.ldapId} on:click={() => updateUserGroupUsers(userGroup.userIds)}
>Save</Button
>
</div>
</Card.Content>

View File

@@ -9,9 +9,7 @@
users: initialUsers,
selectionDisabled = false,
selectedUserIds = $bindable()
}: { users: Paginated<User>;
selectionDisabled?: boolean;
selectedUserIds: string[] } = $props();
}: { users: Paginated<User>; selectionDisabled?: boolean; selectedUserIds: string[] } = $props();
const userService = new UserService();