Bugfix: Admin - Config search should be ko.observable() not ko.observableArray()

This commit is contained in:
the-djmaze 2024-09-17 21:12:28 +02:00
parent 32da821c17
commit 365392eefe

View file

@ -10,7 +10,7 @@ export class AdminSettingsConfig /*extends AbstractViewSettings*/ {
constructor() {
this.config = ko.observableArray();
this.search = ko.observableArray();
this.search = ko.observable('');
this.saved = ko.observable(false).extend({ falseTimeout: 5000 });
this.search.subscribe(value => {