Skip to content

Commit 2f56ce9

Browse files
committed
Fix details message for paused deployments
1 parent 03832b7 commit 2f56ce9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/scripts/services/resourceAlerts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ angular.module("openshiftConsole")
109109
alerts[deployment.metadata.uid + '-paused'] = {
110110
type: 'info',
111111
message: deployment.metadata.name + ' is paused.',
112-
detail: 'This will stop any new rollouts or triggers from running until resumed.',
112+
details: 'This will stop any new rollouts or triggers from running until resumed.',
113113
links: [{
114114
href: "",
115115
label: 'Resume Rollouts',

dist/scripts/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4589,7 +4589,7 @@ var d = {};
45894589
return _.get(b, "spec.paused") && (d[b.metadata.uid + "-paused"] = {
45904590
type:"info",
45914591
message:b.metadata.name + " is paused.",
4592-
detail:"This will stop any new rollouts or triggers from running until resumed.",
4592+
details:"This will stop any new rollouts or triggers from running until resumed.",
45934593
links:[ {
45944594
href:"",
45954595
label:"Resume Rollouts",

0 commit comments

Comments
 (0)