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 106b4e8 commit e2da61bCopy full SHA for e2da61b
src/js/components/controls/control.js
@@ -10,7 +10,6 @@ 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
@@ -13,9 +13,6 @@ class HRControl extends Control {
group: 'html',
icon: 'divider',
id: 'divider',
- },
17
- attrs: {
18
- className: '',
19
20
21
super(hrConfig)
0 commit comments