Skip to content

Commit 9f649e9

Browse files
author
OpenShift Bot
authored
Merge pull request #867 from jwforres/bug_1300899_cancelling
Merged by openshift-bot
2 parents f839c85 + d8ffe9d commit 9f649e9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/scripts/controllers/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ angular.module('openshiftConsole')
139139
// TODO: common alerts service to eliminate duplication
140140
$scope.alerts["cancel"] = {
141141
type: "success",
142-
message: "Cancelling build " + build.metadata.name + " of " + $scope.buildConfigName + "."
142+
message: "Cancelled build " + build.metadata.name + " of " + $scope.buildConfigName + "."
143143
};
144144
}, function reject(result) {
145145
// TODO: common alerts service to eliminate duplication

app/scripts/services/deployments.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ angular.module("openshiftConsole")
178178
$scope.alerts["cancel"] =
179179
{
180180
type: "success",
181-
message: "Cancelling deployment " + deploymentName + " of " + deploymentConfigName + ".",
181+
message: "Cancelled deployment " + deploymentName + " of " + deploymentConfigName + ".",
182182
};
183183
},
184184
function(result) {

dist/scripts/scripts.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2514,7 +2514,7 @@ var f = a.metadata.name, g = c("annotation")(a, "deploymentConfig"), h = angular
25142514
h.metadata.annotations[i] = "true", h.metadata.annotations[j] = "The deployment was cancelled by the user", b.update("replicationcontrollers", f, h, d).then(function() {
25152515
e.alerts = e.alerts || {}, e.alerts.cancel = {
25162516
type:"success",
2517-
message:"Cancelling deployment " + f + " of " + g + "."
2517+
message:"Cancelled deployment " + f + " of " + g + "."
25182518
};
25192519
}, function(a) {
25202520
e.alerts = e.alerts || {}, e.alerts.cancel = {
@@ -5283,7 +5283,7 @@ a.showSecret = !0;
52835283
d.cancelBuild(a.build, a.buildConfigName, i).then(function(b) {
52845284
a.alerts.cancel = {
52855285
type:"success",
5286-
message:"Cancelling build " + b.metadata.name + " of " + a.buildConfigName + "."
5286+
message:"Cancelled build " + b.metadata.name + " of " + a.buildConfigName + "."
52875287
};
52885288
}, function(c) {
52895289
a.alerts.cancel = {

0 commit comments

Comments
 (0)