Skip to content

Commit

Permalink
Don't show directory app parameters for kustomize apps (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmt authored and alexec committed Feb 15, 2019
1 parent c631589 commit 7b1bf35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class ApplicationCreationWizardContainer extends React.Component<WizardPr
const needKsonnetParams = !!(this.state.selectedAppDetails && this.state.selectedAppDetails.ksonnet);
const needHelmParams = !!(this.state.selectedAppDetails && this.state.selectedAppDetails.helm);
const needKustomizeParams = !!(this.state.selectedAppDetails && this.state.selectedAppDetails.kustomize);
const needDirectoryParams = !(needKsonnetParams || needHelmParams || needKsonnetParams);
const needDirectoryParams = !(needKsonnetParams || needHelmParams || needKustomizeParams);
return {
title: 'Review application parameters',
canNext: () => this.state.appParamsValid,
Expand Down

0 comments on commit 7b1bf35

Please sign in to comment.