improvements to listsetting, added some localization strings

This commit is contained in:
Henry Jameson 2025-12-07 14:01:09 +02:00
commit d7453c09b2
5 changed files with 24 additions and 6 deletions

View file

@ -19,6 +19,10 @@ export default {
type: Boolean
},
overrideAvailableOptions: {
required: false,
type: Boolean
},
options: {
required: false,
type: Set
},
@ -70,7 +74,7 @@ export default {
builtinEntries () {
if (this.ignoreSuggestions) return []
if (this.overrideAvailableOptions) {
return [...this.overrideAvailableOptions]
return [...this.options]
}
if (!this.suggestionsSet) return []