1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add seperator between name and key for config map refs

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-08-31 12:00:35 -04:00
parent 95f3acf750
commit 343ef9a21c

View File

@ -88,7 +88,7 @@ const NonInjectedContainerEnv = ({
const { name, key } = configMapKeyRef;
const configMap = configMapStore.getByName(name, namespace);
return configMap?.data[key] ?? `configMapKeyRef(${name}${key})`;
return configMap?.data[key] ?? `configMapKeyRef(${name}:${key})`;
}
return null;