summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/index.js
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-06-21 20:45:06 +0000
committerMike Greiling <mike@pixelcog.com>2019-06-21 20:45:06 +0000
commitae4966f29a928212ce54e548a48098456b374336 (patch)
tree8e33959e3f1f291a31fb6c20f0d912be0880a967 /app/assets/javascripts/environments/index.js
parentc6f54ab12b5b276dadda0639ea647e9a2b4c1781 (diff)
downloadgitlab-ce-ae4966f29a928212ce54e548a48098456b374336.tar.gz
Select deployments that only has the app label
As Auto DevOps deployments both label and annotations, that will be included in the deploy board so need to warn at all.
Diffstat (limited to 'app/assets/javascripts/environments/index.js')
-rw-r--r--app/assets/javascripts/environments/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/environments/index.js b/app/assets/javascripts/environments/index.js
index b53d42f202b..dcdaf8731f8 100644
--- a/app/assets/javascripts/environments/index.js
+++ b/app/assets/javascripts/environments/index.js
@@ -20,6 +20,7 @@ export default () =>
endpoint: environmentsData.environmentsDataEndpoint,
newEnvironmentPath: environmentsData.newEnvironmentPath,
helpPagePath: environmentsData.helpPagePath,
+ deployBoardsHelpPath: environmentsData.deployBoardsHelpPath,
cssContainerClass: environmentsData.cssClass,
canCreateEnvironment: parseBoolean(environmentsData.canCreateEnvironment),
canReadEnvironment: parseBoolean(environmentsData.canReadEnvironment),
@@ -31,6 +32,7 @@ export default () =>
endpoint: this.endpoint,
newEnvironmentPath: this.newEnvironmentPath,
helpPagePath: this.helpPagePath,
+ deployBoardsHelpPath: this.deployBoardsHelpPath,
cssContainerClass: this.cssContainerClass,
canCreateEnvironment: this.canCreateEnvironment,
canReadEnvironment: this.canReadEnvironment,