Skip to content
Snippets Groups Projects
Commit b1a24894 authored by rhenck's avatar rhenck
Browse files

[editor] Fix radio-group-image duplication

#283
parent f96648e3
No related branches found
No related tags found
No related merge requests found
Pipeline #39909 passed
......@@ -17,7 +17,7 @@ export class RadioButtonGroupComplexElement extends InputElement implements Posi
constructor(element: Partial<RadioButtonGroupComplexElement>, ...args: unknown[]) {
super({ height: 100, ...element }, ...args);
if (element.columns) this.columns = element.columns;
if (element.columns) this.columns = [...element.columns];
this.position = ElementFactory.initPositionProps({ marginBottom: 40, ...element.position });
this.styling = {
...ElementFactory.initStylingProps({ backgroundColor: 'transparent', ...element.styling })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment