So I'm trying to fix a graphical error with a jira plugin that provides its configuration layouts as velocity templates.
Since jira 8.13 (possibly earlier), it seems the select
tag will render with v
s all through the component.
The select component remains functional, though this is of course not something we want to deploy.
I have stripped the template of just about everything. What little remains:
<html><head><title>Very Sophisticated Title</title><meta name="decorator" content="atl.admin"></head><body><div class="jiraformbody"><form action="MyAction!save.jspa" class="aui" method="post"><div class="form-body"><h2>Blah Blah</h2><div class="field-group"><label>Bloody Glitch<span class="aui-icon icon-required"> required</span> </label><select><option>Foo</option><option>Bar</option></select></div></div></form></div></body></html>
still produces
Why?
And more importantly, how do I fix this?