This commit is contained in:
Timothy Jaeryang Baek
2026-03-11 15:35:49 -05:00
parent 7ea1e9cbd0
commit 4a8f995c3f
2 changed files with 3 additions and 1 deletions

View File

@@ -57,6 +57,7 @@
bind:groupIds
includeGroups={true}
includeUsers={shareUsers}
includeSessionUser={true}
/>
</div>

View File

@@ -21,6 +21,7 @@
export let includeGroups = true;
export let includeUsers = true;
export let pagination = false;
export let includeSessionUser = false;
export let groupIds = [];
export let userIds = [];
@@ -245,7 +246,7 @@
<div>
{#each users as user, userIdx (user.id)}
{#if user?.id !== $_user?.id}
{#if includeSessionUser || user?.id !== $_user?.id}
<button
class=" dark:border-gray-850 text-xs flex items-center justify-between w-full"
type="button"