We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a521730 commit 106b4e8Copy full SHA for 106b4e8
src/js/components/controls/control.js
@@ -10,6 +10,7 @@ export default class Control {
10
constructor({ events = {}, dependencies = {}, ...restConfig } = {}) {
11
this.events = events
12
this.controlData = restConfig
13
+ this.controlData.attrs = Object.assign({}, this.controlData.attrs, {hidden: false});
14
this.depsLoaded = this.fetchDependencies(dependencies)
15
}
16
src/js/components/controls/html/hr.js
@@ -14,6 +14,9 @@ class HRControl extends Control {
icon: 'divider',
id: 'divider',
},
17
+ attrs: {
18
+ className: '',
19
+ }
20
21
super(hrConfig)
22
0 commit comments