1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 07:19:41 +02:00

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

This commit is contained in:
Alice Groux 2021-02-22 23:44:40 +01:00 committed by GitHub
parent b9cad8a7ea
commit 44b6aaedc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;