[~lfitzgerald] [~jhellar] The issue is still there. It has not been automatically resolved by the previous fix because of [this code|https://github.com/aerogear/mobile-developer-console/blob/e8101acbf44254dbc2315f120bd04bb445df7619/ui/src/components/mobileservices/BindingPanel.js#L35]: it changes the value of a component property. That should be avoided and state change should be performed instead. To easy resolve the issue, something like this could be added: {code:javascript} if (!hasUPSAndroidAnnotation && !hasUPSIOSAnnotation) { if (schema.properties.CLIENT_TYPE) { schema.properties.CLIENT_TYPE.default = 'Android'; schema.properties.CLIENT_TYPE.enum = ['Android', 'IOS']; } } {code} |
|