Compare commits

...

2 Commits

Author SHA1 Message Date
Felix Han
dde3eb384f fix(name): moved copy object to upper level of the function 2021-09-17 17:16:34 +12:00
Felix Han
ed0c14d51c fix(name): fixed namespace creation issue when a registry attached. 2021-09-17 14:50:15 +12:00

View File

@@ -20,7 +20,7 @@ class KubernetesSummaryController {
$scope.$watch(
'$ctrl.formValues',
(formValues) => {
this.state.resources = this.generateResourceSummaryList(formValues);
this.state.resources = this.generateResourceSummaryList(angular.copy(formValues));
},
true
);