Bugfix: conflicting File object with native JS

Cleanup: Stores and tooltips
This commit is contained in:
djmaze 2021-02-17 14:40:21 +01:00
parent 1df2e00862
commit db0d03db83
43 changed files with 204 additions and 295 deletions

View file

@ -1,11 +1,5 @@
import ko from 'ko';
class PluginAdminStore {
constructor() {
this.plugins = ko.observableArray();
this.plugins.loading = ko.observable(false).extend({ debounce: 100 });
this.plugins.error = ko.observable('');
}
}
export default new PluginAdminStore();
export const PluginAdminStore = ko.observableArray();
PluginAdminStore.loading = ko.observable(false).extend({ debounce: 100 });
PluginAdminStore.error = ko.observable('');