Browse Source

Check only the component style for the target update. Fixes #2657

pull/3024/head
Artur Arseniev 6 years ago
parent
commit
9c151bd5c2
  1. 6
      src/style_manager/view/PropertyView.js

6
src/style_manager/view/PropertyView.js

@ -427,11 +427,7 @@ export default Backbone.View.extend({
const onChange = this.onChange;
// Check if component is allowed to be styled
if (
!target ||
!this.isTargetStylable(target) ||
!this.isComponentStylable()
) {
if (!target || !this.isComponentStylable()) {
return;
}

Loading…
Cancel
Save