Make ENUM and SET display correctly when editing procedures and functions

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-06-03 01:33:57 +02:00
parent bfcab1f8ce
commit abb94da72f
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -10,7 +10,7 @@
</select> </select>
</td> </td>
<td> <td>
<input name="item_param_name[{{ index }}]" type="text" value="{{ item_param_name }}"> <input name="item_param_name[{{ index }}]" type="text" value="{{ item_param_name|raw }}">
</td> </td>
<td> <td>
<select name="item_param_type[{{ index }}]"> <select name="item_param_type[{{ index }}]">
@ -18,7 +18,7 @@
</select> </select>
</td> </td>
<td> <td>
<input id="item_param_length_{{ index }}" name="item_param_length[{{ index }}]" type="text" value="{{ item_param_length }}"> <input id="item_param_length_{{ index }}" name="item_param_length[{{ index }}]" type="text" value="{{ item_param_length|raw }}">
<div class="enum_hint"> <div class="enum_hint">
<a href="#" class="open_enum_editor"> <a href="#" class="open_enum_editor">
{{ get_image('b_edit', '', {'title': 'ENUM/SET editor'|trans}) }} {{ get_image('b_edit', '', {'title': 'ENUM/SET editor'|trans}) }}