Get a working Sieve scripts manager

This commit is contained in:
djmaze 2021-01-19 16:01:30 +01:00
parent a31834458b
commit e3125ebfff
24 changed files with 439 additions and 304 deletions

View file

@ -1,18 +0,0 @@
import ko from 'ko';
class FilterUserStore {
constructor() {
ko.addObservablesTo(this, {
capa: '',
modules: [],
raw: ''
});
this.filters = ko.observableArray([]);
this.filters.loading = ko.observable(false).extend({ throttle: 200 });
this.filters.saving = ko.observable(false).extend({ throttle: 200 });
}
}
export default new FilterUserStore();