fix(frontend): fixed incorrect usage of `labels` instead of `deploy.labels` in `getFinalValues`

pull/85/head
Samuel Rowe 3 years ago
parent c84c91dc20
commit 94ea9f71e6

@ -475,7 +475,9 @@ export const getFinalValues = (
window: pruneString(deploy.restartPolicy.window)
}),
labels: pruneObject(
Object.fromEntries(labels.map((label) => [label.key, label.value]))
Object.fromEntries(
deploy.labels.map((label) => [label.key, label.value])
)
)
}),
image: `${values.imageName}${

Loading…
Cancel
Save