|
14 | 14 | </div> |
15 | 15 |
|
16 | 16 | <div ng-class="{statistics: true, 'show': ctrl.showStatistics}"> |
17 | | - <label class="header--selection">{{ctrl.selectionId}}</label> |
18 | | - <label class="secondHeader--selection">Receiving</label> |
19 | | - <label class="noSending--selection" ng-show="ctrl.receiving.length == 0">No receiving Data</label> |
| 17 | + <div class="header--selection">{{ctrl.selectionId}}</div> |
| 18 | + <div class="secondHeader--selection">Receiving</div> |
| 19 | + <div class="no-data--selection" ng-show="ctrl.receiving.length == 0">No receiving Data</div> |
20 | 20 | <table class="table--selection" ng-show="ctrl.receiving.length > 0"> |
21 | | - <tr> |
22 | | - <th class="table--th--selection">Name</th> |
23 | | - <th class="table--th--selection table--th--selectionSmall">Time</th> |
24 | | - <th class="table--th--selection table--th--selectionSmall">Requests</th> |
25 | | - <th class="table--th--selection table--th--selectionSmall">Error Rate</th> |
| 21 | + <tr class="table--selection--head"> |
| 22 | + <th>Name</th> |
| 23 | + <th class="table--th--selectionSmall">Time</th> |
| 24 | + <th class="table--th--selectionSmall">Requests</th> |
| 25 | + <th class="table--th--selectionSmall">Error Rate</th> |
26 | 26 | </tr> |
27 | 27 | <tr ng-repeat="node in ctrl.receiving"> |
28 | 28 | <td class="table--td--selection">{{node.name}}</td> |
29 | | - <td class="table--td--selection table--td--selectionSmall">{{node.responseTime}}</td> |
30 | | - <td class="table--td--selection table--td--selectionSmall">{{node.rate}}</td> |
31 | | - <td class="table--td--selection table--td--selectionSmall">{{node.error}}</td> |
| 29 | + <td class="table--td--selection">{{node.responseTime}}</td> |
| 30 | + <td class="table--td--selection">{{node.rate}}</td> |
| 31 | + <td class="table--td--selection">{{node.error}}</td> |
32 | 32 | </tr> |
33 | 33 | </table> |
34 | | - <label class="secondHeader--selection">Sending</label> |
35 | | - <label class="noSending--selection" ng-show="ctrl.sending.length == 0">No sending Data</label> |
| 34 | + |
| 35 | + <div class="secondHeader--selection">Sending</div> |
| 36 | + <div class="no-data--selection" ng-show="ctrl.sending.length == 0">No sending Data</div> |
36 | 37 | <table class="table--selection" ng-show="ctrl.sending.length>0"> |
37 | | - <tr> |
38 | | - <th class="table--th--selection">Name</th> |
39 | | - <th class="table--th--selection table--th--selectionSmall">Time</th> |
40 | | - <th class="table--th--selection table--th--selectionSmall">Requests</th> |
41 | | - <th class="table--th--selection table--th--selectionSmall">Error Rate</th> |
| 38 | + <tr class="table--selection--head"> |
| 39 | + <th>Name</th> |
| 40 | + <th class="table--th--selectionSmall">Time</th> |
| 41 | + <th class="table--th--selectionSmall">Requests</th> |
| 42 | + <th class="table--th--selectionSmall">Error Rate</th> |
42 | 43 | </tr> |
43 | 44 | <tr ng-repeat="node in ctrl.sending"> |
44 | 45 | <td class="table--td--selection">{{node.name}}</td> |
45 | | - <td class="table--td--selection table--td--selectionSmall">{{node.responseTime}}</td> |
46 | | - <td class="table--td--selection table--td--selectionSmall">{{node.rate}}</td> |
47 | | - <td class="table--td--selection table--td--selectionSmall">{{node.error}}</td> |
| 46 | + <td class="table--td--selection">{{node.responseTime}}</td> |
| 47 | + <td class="table--td--selection">{{node.rate}}</td> |
| 48 | + <td class="table--td--selection">{{node.error}}</td> |
48 | 49 | </tr> |
49 | 50 |
|
50 | 51 | </table> |
|
0 commit comments