Skip to content

Commit

Permalink
Update labels configuration table
Browse files Browse the repository at this point in the history
  • Loading branch information
pablotr9 committed Oct 1, 2019
1 parent 4a0e5ff commit bb73184
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,13 @@
<thead class="wz-text-bold">
<th class="wz-text-left">Label key</th>
<th class="wz-text-left">Label value</th>
<th class="wz-text-left">Hidden</th>
</thead>
<tbody class="wz-word-wrap">
<tr ng-repeat="(key, value) in currentConfig[(agent && agent.id !== '000') ? 'agent-labels' : 'analysis-labels'].labels">
<td>{{ key }}</td>
<td>{{ value }}</td>
<tr ng-repeat="currentLabel in currentConfig[(agent && agent.id !== '000') ? 'agent-labels' : 'analysis-labels'].labels">
<td>{{ currentLabel.key }}</td>
<td>{{ currentLabel.value }}</td>
<td>{{ currentLabel.hidden }}</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit bb73184

Please sign in to comment.