mirror of https://github.com/portainer/portainer
fix(name): fixed namespace creation issue when a registry attached. (#5646)
* fix(name): fixed namespace creation issue when a registry attached. * fix(name): moved copy object to upper level of the functionpull/5710/head
parent
a6138dd5a3
commit
d14c7b0309
|
@ -20,7 +20,7 @@ class KubernetesSummaryController {
|
||||||
$scope.$watch(
|
$scope.$watch(
|
||||||
'$ctrl.formValues',
|
'$ctrl.formValues',
|
||||||
(formValues) => {
|
(formValues) => {
|
||||||
this.state.resources = this.generateResourceSummaryList(formValues);
|
this.state.resources = this.generateResourceSummaryList(angular.copy(formValues));
|
||||||
},
|
},
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue