You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-07-17 01:32:29 +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
|
return this.keywords
|
||||||
.filter((key) => key.startsWith(text.current))
|
.filter((key) => key.startsWith(text.current.toLowerCase()))
|
||||||
.map((key) => ({
|
.map((key) => ({
|
||||||
text: key,
|
text: key,
|
||||||
queryHint: key,
|
queryHint: key,
|
||||||
|
Reference in New Issue
Block a user