File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -103,9 +103,10 @@ angular.module('openshiftConsole')
103
103
type : "warning" ,
104
104
message : "Build configuration " + $scope . buildConfigName + " has been deleted."
105
105
} ;
106
+ $scope . buildConfigDeleted = true ;
106
107
}
107
108
$scope . buildConfig = buildConfig ;
108
- $scope . paused = BuildsService . isPaused ( $scope . buildConfig ) ;
109
+ $scope . buildConfigPaused = BuildsService . isPaused ( $scope . buildConfig ) ;
109
110
updateCanBuild ( ) ;
110
111
} ;
111
112
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ angular.module('openshiftConsole')
102
102
var buildConfigResolved = function ( buildConfig , action ) {
103
103
$scope . loaded = true ;
104
104
$scope . buildConfig = buildConfig ;
105
- $scope . paused = BuildsService . isPaused ( $scope . buildConfig ) ;
105
+ $scope . buildConfigPaused = BuildsService . isPaused ( $scope . buildConfig ) ;
106
106
if ( $scope . buildConfig . spec . source . images ) {
107
107
$scope . imageSources = $scope . buildConfig . spec . source . images ;
108
108
$scope . imageSourcesPaths = [ ] ;
@@ -116,6 +116,7 @@ angular.module('openshiftConsole')
116
116
type : "warning" ,
117
117
message : "This build configuration has been deleted."
118
118
} ;
119
+ $scope . buildConfigDeleted = true ;
119
120
}
120
121
if ( ! $scope . forms . bcEnvVars || $scope . forms . bcEnvVars . $pristine ) {
121
122
copyBuildConfigAndEnsureEnv ( buildConfig ) ;
Original file line number Diff line number Diff line change 10
10
< h1 >
11
11
{{buildConfigName}}
12
12
< span class ="pficon pficon-warning-triangle-o "
13
- ng-if ="paused "
13
+ ng-if ="buildConfigPaused || buildConfigDeleted "
14
14
aria-hidden ="true "
15
15
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.'}} ">
17
17
</ span >
18
18
< div class ="pull-right dropdown " ng-if ="buildConfig " ng-hide ="!('buildConfigs' | canIDoAny) ">
19
19
<!-- Primary Actions -->
Original file line number Diff line number Diff line change 14
14
{{build.metadata.name}}
15
15
< 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 >
16
16
< span class ="pficon pficon-warning-triangle-o "
17
- ng-if ="paused "
17
+ ng-if ="buildConfigPaused || buildConfigDeleted "
18
18
aria-hidden ="true "
19
19
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.'}} ">
21
21
</ span >
22
22
< small class ="meta "> created < relative-timestamp timestamp ="build.metadata.creationTimestamp "> </ relative-timestamp > </ small >
23
23
< div class ="pull-right dropdown " ng-hide ="!('builds' | canIDoAny) ">
You can’t perform that action at this time.
0 commit comments