Browse Source

Fixed issue with panels visible attribute being not used.

pull/3430/head
Evgenij Myasnikov 5 years ago
parent
commit
ddf18737fd
  1. 2
      src/panels/view/PanelView.js

2
src/panels/view/PanelView.js

@ -120,6 +120,8 @@ export default Backbone.View.extend({
const cls = `${this.className} ${this.id} ${ppfx}one-bg ${ppfx}two-color`;
$el.addClass(cls);
this.toggleVisible();
if (this.buttons.length) {
var buttons = new ButtonsView({
collection: this.buttons,

Loading…
Cancel
Save