Repository: ode-console Updated Branches: refs/heads/master 26d35f5c1 -> f6df4bf61
added controller to make undeploy operation work Project: http://git-wip-us.apache.org/repos/asf/ode-console/repo Commit: http://git-wip-us.apache.org/repos/asf/ode-console/commit/f6df4bf6 Tree: http://git-wip-us.apache.org/repos/asf/ode-console/tree/f6df4bf6 Diff: http://git-wip-us.apache.org/repos/asf/ode-console/diff/f6df4bf6 Branch: refs/heads/master Commit: f6df4bf6126cdf35131680691a92e35a978a0a18 Parents: 26d35f5 Author: sathwik <[email protected]> Authored: Fri Oct 7 19:21:21 2016 +0530 Committer: sathwik <[email protected]> Committed: Fri Oct 7 19:21:21 2016 +0530 ---------------------------------------------------------------------- src/app/process/processlist.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode-console/blob/f6df4bf6/src/app/process/processlist.html ---------------------------------------------------------------------- diff --git a/src/app/process/processlist.html b/src/app/process/processlist.html index f76704b..4790aed 100644 --- a/src/app/process/processlist.html +++ b/src/app/process/processlist.html @@ -27,10 +27,10 @@ </tr> <tr class="active"> <td colspan="8">{{package.name}} <span class="label label-info" ng-if="package.version">Version {{package.version}}</span></td> - <td> + <td><div ng-controller="ProcessActionsController"> <button type="button" class="btn btn-danger btn-xs" ng-really-message="Are you sure?" ng-really-click="undeployPackage(package.packageId)"> <span class="glyphicon glyphicon-remove"></span> Undeploy - </button> + </button></div> </td> </tr> <tr ng-repeat="process in package.processes">
