fix(kube): change advanced deployment label [EE-6310] (#10626)

* change namespace label to deploy to

* fix var typo
pull/10633/head
Matt Hook 2023-11-15 11:35:39 +13:00 committed by GitHub
parent e1e90c9c1d
commit 3525a1af77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
></box-selector>
<!-- namespace -->
<div class="col-sm-12 form-section-title !mt-4"> Namespace </div>
<div class="col-sm-12 form-section-title !mt-4"> Deploy to </div>
<div class="form-group" ng-if="ctrl.formValues.Namespace && ctrl.state.BuildMethod !== ctrl.BuildMethods.HELM">
<label for="toggle_logo" class="col-lg-2 col-sm-3 control-label text-left">
Use namespace(s) specified from manifest
@ -49,7 +49,7 @@
ng-model="ctrl.formValues.Namespace"
ng-options="namespace.Name as namespace.Name for namespace in ctrl.namespaces"
></select>
<span ng-if="ctrl.formValues.namespace_toggle && ctrl.state.buildMethod !== ctrl.BuildMethods.HELM" class="small text-muted pt-[7px]"
<span ng-if="ctrl.formValues.namespace_toggle && ctrl.state.BuildMethod !== ctrl.BuildMethods.HELM" class="small text-muted pt-[7px]"
>Namespaces specified in the manifest will be used</span
>
</div>