I'm trying to create a table I have the following code
<tr ng-repeat="value in sd.data>
<td >{{value.syscode}}</td>
<td>{{value.out_signal_id}}</td>
<td>{{value.sig_epoch_utc}}</td>
<td>{{value.num_of_signals}}</td>
<td>{{value.status_code}}</td>
<td>{{value.status_note}}</td>
<tr >
This is an example how the table looks like after the array has been looped by ng-repeat
syscode | out_signal_id | sig_epoch_utc | num_of_signals | status_code | status_note
2221111 | 12323454343 | 2093236693029 | 120000000000 | 3030000000| no-errors
2221111 | 12323454343 | 2093235593029 | 120000000000 | 3030000000| no-errors-1
2221111 | 12323454343 | 2093233393029 | 120000000000 | 3030000000| no-errors-2
I am trying to skip the repeated values on 'syscode' in this case I just need only one '2221111' not 3 of them, I did look through other answers for questions similar to this one, but that didn't answer my question. Any answer will be appreciated thanks!
status_notegets displayed?