Skip to content

Commit cd1f5b5

Browse files
committed
Add warning that BC has been deleted
1 parent 402dd22 commit cd1f5b5

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

app/scripts/controllers/build.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,10 @@ angular.module('openshiftConsole')
103103
type: "warning",
104104
message: "Build configuration " + $scope.buildConfigName + " has been deleted."
105105
};
106+
$scope.buildConfigDeleted = true;
106107
}
107108
$scope.buildConfig = buildConfig;
108-
$scope.paused = BuildsService.isPaused($scope.buildConfig);
109+
$scope.buildConfigPaused = BuildsService.isPaused($scope.buildConfig);
109110
updateCanBuild();
110111
};
111112

app/scripts/controllers/buildConfig.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ angular.module('openshiftConsole')
102102
var buildConfigResolved = function(buildConfig, action) {
103103
$scope.loaded = true;
104104
$scope.buildConfig = buildConfig;
105-
$scope.paused = BuildsService.isPaused($scope.buildConfig);
105+
$scope.buildConfigPaused = BuildsService.isPaused($scope.buildConfig);
106106
if ($scope.buildConfig.spec.source.images) {
107107
$scope.imageSources = $scope.buildConfig.spec.source.images;
108108
$scope.imageSourcesPaths = [];
@@ -116,6 +116,7 @@ angular.module('openshiftConsole')
116116
type: "warning",
117117
message: "This build configuration has been deleted."
118118
};
119+
$scope.buildConfigDeleted = true;
119120
}
120121
if (!$scope.forms.bcEnvVars || $scope.forms.bcEnvVars.$pristine) {
121122
copyBuildConfigAndEnsureEnv(buildConfig);

app/views/browse/build-config.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<h1>
1111
{{buildConfigName}}
1212
<span class="pficon pficon-warning-triangle-o"
13-
ng-if="paused"
13+
ng-if="buildConfigPaused || buildConfigDeleted"
1414
aria-hidden="true"
1515
data-toggle="tooltip"
16-
data-original-title="Building from build configuration {{buildConfig.metadata.name}} has been paused.">
16+
data-original-title="{{buildConfigDeleted ? 'This build configuration no longer exists' : 'Building from build configuration ' + buildConfig.metadata.name + ' has been paused.'}}">
1717
</span>
1818
<div class="pull-right dropdown" ng-if="buildConfig" ng-hide="!('buildConfigs' | canIDoAny)">
1919
<!-- Primary Actions -->

app/views/browse/build.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ <h1>
1414
{{build.metadata.name}}
1515
<span ng-if="build.status.message" class="pficon pficon-warning-triangle-o" style="cursor: help;" data-toggle="popover" data-trigger="hover" dynamic-content="{{build.status.message}}"></span>
1616
<span class="pficon pficon-warning-triangle-o"
17-
ng-if="paused"
17+
ng-if="buildConfigPaused || buildConfigDeleted"
1818
aria-hidden="true"
1919
data-toggle="tooltip"
20-
data-original-title="Building from build configuration {{buildConfig.metadata.name}} has been paused.">
20+
data-original-title="{{buildConfigDeleted ? 'The build configuration for this build no longer exists.' : 'Building from build configuration ' + buildConfig.metadata.name + ' has been paused.'}}">
2121
</span>
2222
<small class="meta">created <relative-timestamp timestamp="build.metadata.creationTimestamp"></relative-timestamp></small>
2323
<div class="pull-right dropdown" ng-hide="!('builds' | canIDoAny)">

0 commit comments

Comments
 (0)