feat(ui): reordered kubernetes create from code options [R8S-429] (#951)

pull/12700/merge
Steven Kang 2025-07-28 15:41:12 +12:00 committed by GitHub
parent 6481483074
commit 5e271fd4a4
1 changed files with 1 additions and 1 deletions

View File

@ -34,10 +34,10 @@ class KubernetesDeployController {
this.methodOptions = [
{ ...git, value: KubernetesDeployBuildMethods.GIT },
{ ...helm, value: KubernetesDeployBuildMethods.HELM },
{ ...editor, value: KubernetesDeployBuildMethods.WEB_EDITOR },
{ ...url, value: KubernetesDeployBuildMethods.URL },
{ ...customTemplate, value: KubernetesDeployBuildMethods.CUSTOM_TEMPLATE },
{ ...helm, value: KubernetesDeployBuildMethods.HELM },
];
let buildMethod = Number(this.$state.params.buildMethod) || KubernetesDeployBuildMethods.GIT;