mirror of https://github.com/portainer/portainer
feat(k8s/application): display all environment variables in edition (#4860)
parent
b9cad8a7ea
commit
44b6aaedc8
|
@ -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…
Reference in New Issue