feat(k8s/application): display all environment variables in edition (#4860)

pull/4889/head
Alice Groux 4 years ago committed by GitHub
parent b9cad8a7ea
commit 44b6aaedc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -123,9 +123,6 @@ class KubernetesApplicationHelper {
static generateEnvVariablesFromEnv(env) {
const envVariables = _.map(env, (item) => {
if (!item.value) {
return;
}
const res = new KubernetesApplicationEnvironmentVariableFormValue();
res.Name = item.name;
res.Value = item.value;

Loading…
Cancel
Save