Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
dd7ac4c5
"llm/git@developer.sourcefind.cn:OpenDAS/ollama.git" did not exist on "ed195f3562f2470ff7ac5cff8ce4ab93a98fefb8"
Commit
dd7ac4c5
authored
Jun 10, 2024
by
Timothy J. Baek
Browse files
refac: search
parent
4601a024
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/lib/components/workspace/Tools.svelte
src/lib/components/workspace/Tools.svelte
+3
-1
No files found.
src/lib/components/workspace/Tools.svelte
View file @
dd7ac4c5
...
@@ -72,7 +72,9 @@
...
@@ -72,7 +72,9 @@
<hr class=" dark:border-gray-850 my-2.5" />
<hr class=" dark:border-gray-850 my-2.5" />
<div class="my-3 mb-5">
<div class="my-3 mb-5">
{#each $tools.filter((t) => query === '' || t.name.includes(query)) as tool}
{#each $tools.filter((t) => query === '' || t.name
.toLowerCase()
.includes(query.toLowerCase()) || t.id.toLowerCase().includes(query.toLowerCase())) as tool}
<div
<div
class=" flex space-x-4 cursor-pointer w-full px-3 py-2 dark:hover:bg-white/5 hover:bg-black/5 rounded-xl"
class=" flex space-x-4 cursor-pointer w-full px-3 py-2 dark:hover:bg-white/5 hover:bg-black/5 rounded-xl"
>
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment