mirror of
https://github.com/open-webui/open-webui
synced 2025-03-25 15:08:18 +00:00
Merge pull request #3437 from silentoplayz/patch-1
feat: case insensitive prompt/models selection chat input
This commit is contained in:
commit
b0ed8ded48
@ -21,7 +21,7 @@
|
||||
let filteredModels = [];
|
||||
|
||||
$: filteredModels = $models
|
||||
.filter((p) => p.name.includes(prompt.split(' ')?.at(0)?.substring(1) ?? ''))
|
||||
.filter((p) => p.name.toLowerCase().includes(prompt.toLowerCase().split(' ')?.at(0)?.substring(1) ?? ''))
|
||||
.sort((a, b) => a.name.localeCompare(b.name));
|
||||
|
||||
$: if (prompt) {
|
||||
|
@ -12,7 +12,7 @@
|
||||
let filteredPromptCommands = [];
|
||||
|
||||
$: filteredPromptCommands = $prompts
|
||||
.filter((p) => p.command.includes(prompt))
|
||||
.filter((p) => p.command.toLowerCase().includes(prompt.toLowerCase()))
|
||||
.sort((a, b) => a.title.localeCompare(b.title));
|
||||
|
||||
$: if (prompt) {
|
||||
|
Loading…
Reference in New Issue
Block a user