ONOS-2149 - GUI -- App control button actions now take into account sort direction for refresh.
Change-Id: Ib9624943bfce032f1705728a3b1b5924cc124eee
Showing
1 changed file
with
3 additions
and
1 deletions
... | @@ -82,7 +82,9 @@ | ... | @@ -82,7 +82,9 @@ |
82 | $log.debug('Initiating ' + action + ' of ' + $scope.selId); | 82 | $log.debug('Initiating ' + action + ' of ' + $scope.selId); |
83 | wss.sendEvent(APP_MGMENT_REQ, { | 83 | wss.sendEvent(APP_MGMENT_REQ, { |
84 | action: action, | 84 | action: action, |
85 | - name: $scope.selId | 85 | + name: $scope.selId, |
86 | + sortCol: $scope.sortParams.sortCol, | ||
87 | + sortDir: $scope.sortParams.sortDir | ||
86 | }); | 88 | }); |
87 | } | 89 | } |
88 | }; | 90 | }; | ... | ... |
-
Please register or login to post a comment