You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-07-15 01:24:25 +02:00
Making autocomplete case-insensitive for built-in commands #587
This commit is contained in:
@ -257,7 +257,7 @@ export class AutoCompleteService {
|
||||
}
|
||||
}
|
||||
return this.keywords
|
||||
.filter((key) => key.startsWith(text.current))
|
||||
.filter((key) => key.startsWith(text.current.toLowerCase()))
|
||||
.map((key) => ({
|
||||
text: key,
|
||||
queryHint: key,
|
||||
|
Reference in New Issue
Block a user