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

RadioComplex: Allow empty string as label

parent b48bf476
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ export class RadioButtonGroupComplexElement extends InputElement
if (environment.strictInstantiation) {
throw new InstantiationEror('Error at RadioButtonGroupComplex instantiation', element);
}
if (element?.label) this.label = element.label;
if (element?.label !== undefined) this.label = element.label;
if (element?.options) this.options = [...element.options];
if (element?.itemsPerRow) this.itemsPerRow = element.itemsPerRow;
this.dimensions = PropertyGroupGenerators.generateDimensionProps({
......
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