flavien peyre 0e33dc7553 Improve variable name
Change-Id: I6fb4c33eec06f440235f67fc198cbcdccbaa0200
2015-08-19 11:23:30 -04:00

14 lines
374 B
HTML

<span data-ng-repeat="(key, inputSource) in inputSources">
<div data-ng-show="param[inputSource]" class="subcomponent__live">
<h2>{{key}}</h2>
<table class="data-table">
<tbody data-ng-repeat="(key, value) in param[inputSource]">
<tr>
<td>{{key}}</td>
<td>{{value}}</td>
</tr>
</tbody>
</table>
</div>
</span>