Commit ff09e8e6 authored by Sven Franck's avatar Sven Franck

app: fix first/last child in radiogroups

parent 472ecd48
......@@ -4001,6 +4001,10 @@
clone.logic.label_i18n = clone_opt.text_i18n;
clone.logic.value = clone_opt.value;
clone.attributes["data-i18n"] = clone_opt.text_i18n;
switch (p) {
case 0: clone.position = true; break;
case len -1: clone.position = false; break;
}
group.children.push(clone);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment