mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 06:58:27 +03:00
Bugfix: Admin - Config search should be ko.observable() not ko.observableArray()
This commit is contained in:
parent
32da821c17
commit
365392eefe
1 changed files with 1 additions and 1 deletions
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue