Bugfix: plugin config failed

This commit is contained in:
djmaze 2021-03-02 09:51:52 +01:00
parent bba0ac150a
commit 0fa0b975ef
2 changed files with 4 additions and 1 deletions

View file

@ -29,4 +29,7 @@
display: block; // account for any element using help-block
margin-bottom: 5px;
}
.controls {
width: 470px;
}
}

View file

@ -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;