Skip to content
Snippets Groups Projects
Commit 995076db authored by jkerdreu's avatar jkerdreu
Browse files

Fix null value for tags/generic_attributes

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/fork@1758 b32b6428-25c9-4566-ad07-03861ab6144f
parent e3704397
Branches
No related tags found
No related merge requests found
......@@ -3,7 +3,10 @@
<div class="generic-attrs">
<table width=100%>
<tr><th>Name</th><th>value</th></tr>
<tr each="{ value, key in attributes }"><td>{ key }</td><td>{ value.toString() }</td></tr>
<tr each="{ value, key in attributes }">
<td>{ key }</td>
<td> { value == null ? 'null' : value.toString()} </td>
</tr>
</table>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment