mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
Bugfix: plugin config failed
This commit is contained in:
parent
bba0ac150a
commit
0fa0b975ef
2 changed files with 4 additions and 1 deletions
|
@ -29,4 +29,7 @@
|
|||
display: block; // account for any element using help-block
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.controls {
|
||||
width: 470px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ class PluginPopupView extends AbstractViewPopup {
|
|||
this.configures = ko.observableArray();
|
||||
|
||||
this.hasReadme = ko.computed(() => !!this.readme());
|
||||
this.hasConfiguration = ko.computed(() => 0 < this.configures.length);
|
||||
this.hasConfiguration = ko.computed(() => 0 < this.configures().length);
|
||||
|
||||
this.bDisabeCloseOnEsc = true;
|
||||
this.sDefaultKeyScope = KeyState.All;
|
||||
|
|
Loading…
Reference in a new issue