Commit 9905f8b0 authored by 's avatar

Added fix for bug in long number display.

parent 9a2ee3bd
......@@ -41,7 +41,10 @@ values and click "Save Changes".
</td>
<td align="left" valign="top">
<!--#if "'w' in _['sequence-item'].get('mode', 'awd')"-->
<!--#if "type in ('int', 'long', 'float', 'date')"-->
<!--#if "type in ('int', 'long')"-->
<input type="text" name="<!--#var id-->:<!--#var type-->" size="35"
value="<!--#var "'%d' % getProperty(id)"-->">
<!--#elif "type in ('float', 'date')"-->
<input type="text" name="<!--#var id-->:<!--#var type-->" size="35"
value="<!--#var "getProperty(id)"-->">
<!--#elif "type=='string'"-->
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment