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
Using the code editor on a form field that contained a <textarea></textarea> illustrated a problem, everything after the </textarea> was cut off, truncating the field.
Using the code editor on a form field that contained a <textarea></textarea> illustrated a problem, everything after the </textarea> was cut off, truncating the field.
CodeEditorField.ss
<textarea $AttributesHTML style="display: none;">{$Value.RAW}</textarea>Change to:
<textarea $AttributesHTML style="display: none;">{$Value}</textarea>Now it works. And also my HTML has proper highlighting in the code editor.
The text was updated successfully, but these errors were encountered: