mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Bugfix: conflicting File object with native JS
Cleanup: Stores and tooltips
This commit is contained in:
parent
1df2e00862
commit
db0d03db83
43 changed files with 204 additions and 295 deletions
|
|
@ -2,9 +2,9 @@ import ko from 'ko';
|
|||
|
||||
import Remote from 'Remote/Admin/Fetch';
|
||||
|
||||
import DomainStore from 'Stores/Admin/Domain';
|
||||
import PluginStore from 'Stores/Admin/Plugin';
|
||||
import PackageStore from 'Stores/Admin/Package';
|
||||
import { DomainAdminStore } from 'Stores/Admin/Domain';
|
||||
import { PluginAdminStore } from 'Stores/Admin/Plugin';
|
||||
import { PackageAdminStore } from 'Stores/Admin/Package';
|
||||
|
||||
import { AbstractViewRight } from 'Knoin/AbstractViews';
|
||||
|
||||
|
|
@ -19,9 +19,9 @@ class PaneSettingsAdminView extends AbstractViewRight {
|
|||
this.leftPanelDisabled = leftPanelDisabled;
|
||||
|
||||
this.adminManLoadingVisibility = ko
|
||||
.computed(() => (DomainStore.domains.loading()
|
||||
|| PluginStore.plugins.loading()
|
||||
|| PackageStore.packages.loading()) ? 'visible' : 'hidden')
|
||||
.computed(() => (DomainAdminStore.loading()
|
||||
|| PluginAdminStore.loading()
|
||||
|| PackageAdminStore.loading()) ? 'visible' : 'hidden')
|
||||
.extend({ rateLimit: 300 });
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue