Skip to content

Commit

Permalink
fix(bakeManifest): fix bake manifest UI rendering (#7463) (#7465)
Browse files Browse the repository at this point in the history
rendering was messed up when kustomize was disables via settings.
previously it would render both forms when no rendering option was
selected.
  • Loading branch information
spinnakerbot authored and louisjimenez committed Oct 1, 2019
1 parent 08c409b commit eb1d9d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class BakeManifestStageForm extends React.Component<

private shouldRenderHelm(): boolean {
const stage = this.props.formik.values;
return stage.templateRenderer === this.HELM_RENDERER || !SETTINGS.feature.kustomizeEnabled;
return stage.templateRenderer === this.HELM_RENDERER;
}

public render() {
Expand Down

0 comments on commit eb1d9d0

Please sign in to comment.