This commit is contained in:
Timothy Jaeryang Baek 2025-11-30 03:50:14 -05:00
parent 9d39b9b42c
commit 69b82edd63
2 changed files with 9 additions and 0 deletions

View file

@ -170,6 +170,7 @@
{#each selectedItems as file, fileIdx} {#each selectedItems as file, fileIdx}
<FileItem <FileItem
{file} {file}
small={true}
item={file} item={file}
name={file.name} name={file.name}
modal={true} modal={true}

View file

@ -708,14 +708,20 @@
{/if} {/if}
</div> </div>
<hr class=" border-gray-100/30 dark:border-gray-850/30 my-2" />
<div class="my-2"> <div class="my-2">
<Knowledge bind:selectedItems={knowledge} /> <Knowledge bind:selectedItems={knowledge} />
</div> </div>
<hr class=" border-gray-100/30 dark:border-gray-850/30 my-2" />
<div class="my-2"> <div class="my-2">
<ToolsSelector bind:selectedToolIds={toolIds} tools={$tools} /> <ToolsSelector bind:selectedToolIds={toolIds} tools={$tools} />
</div> </div>
<hr class=" border-gray-100/30 dark:border-gray-850/30 my-2" />
<div class="my-2"> <div class="my-2">
<FiltersSelector <FiltersSelector
bind:selectedFilterIds={filterIds} bind:selectedFilterIds={filterIds}
@ -748,6 +754,8 @@
/> />
</div> </div>
<hr class=" border-gray-100/30 dark:border-gray-850/30 my-2" />
<div class="my-2"> <div class="my-2">
<Capabilities bind:capabilities /> <Capabilities bind:capabilities />
</div> </div>