We use an html checkbox list as an internal note for some of our tickets. The formatting is essentially just this:
<h3>Checklist</h3>
<ul>
<li><input type="checkbox"><label>FIELD</label></li>
</ul>
Before the update it would work well enough, we'd just have to edit the internal post and adjust the checkbox html to 'checked' in order to check the box. Since the update, after submitting the initial html internal post the <input type="checkbox"> snippet is removed entirely from the code. What's causing this?
Also, we use an API call for the type of ticket where this checklist is used, would it be easy to add a custom form field checkbox list to the initial post instead of using internal posts like this?
Thanks.