Skip to content

Commit

Permalink
Remove alpha prefix from service catalog properties
Browse files Browse the repository at this point in the history
Since service-catalog 0.0.18, the alpha prefix has been removed from all
fields in favor of feature gating. Make the corresponding API changes in
the web catalog.
  • Loading branch information
spadgett committed Sep 19, 2017
1 parent 0c1d8d7 commit 83cd54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/directives/bindService.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
ctrl.serviceClass = ctrl.serviceClasses[instance.spec.serviceClassName];
ctrl.serviceClassName = instance.spec.serviceClassName;
ctrl.plan = BindingService.getPlanForInstance(instance, ctrl.serviceClass);
ctrl.parameterSchema = _.get(ctrl.plan, 'alphaServiceInstanceCredentialCreateParameterSchema');
ctrl.parameterSchema = _.get(ctrl.plan, 'serviceInstanceCredentialCreateParameterSchema');
bindParametersStep.hidden = !_.has(ctrl.parameterSchema, 'properties');
ctrl.nextTitle = bindParametersStep.hidden ? 'Bind' : 'Next >';
};
Expand Down

0 comments on commit 83cd54a

Please sign in to comment.