You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1- open the sample application https://draggable.github.io/formeo/
2- create a Radio Group
3- change the name of some option, for example "Radio 2" to "new radio 2"
4- press the edit button radio Group / options BUG: The preview does not match the options.
5- remove option 1 and remove option 3
6- create 2 new options
7- press edit button. BUG The preview does not match the options.
The fields that have options have the same bug
The text was updated successfully, but these errors were encountered:
Can you try clicking into the settings for each of the radio or checkbox options, rather than typing the value directly into label? This is the workaround we have had to use to deal with this bug.
I agree. The contenteditable=true attribute is driving this.
We added CSS to make the controls look non-editable. Suboptimal, of course,
but it doesn't invite the user to find the bug.
CSS:
.formeo.formeo-editor .f-radio [contenteditable]:after,
.formeo.formeo-editor .f-checkbox [contenteditable]:after {
border-bottom: none;
}
I have found several bugs when editing a form.
1- open the sample application https://draggable.github.io/formeo/
2- create a Radio Group
3- change the name of some option, for example "Radio 2" to "new radio 2"
4- press the edit button radio Group / options
BUG: The preview does not match the options.
5- remove option 1 and remove option 3
6- create 2 new options
7- press edit button.
BUG The preview does not match the options.
The fields that have options have the same bug
The text was updated successfully, but these errors were encountered: