YARN-8419. [UI2] User cannot submit a new service as submit button is always disabled. Contributed by Suma Shivaprasad.

This commit is contained in:
Sunil G 2018-06-12 17:40:41 +05:30
parent 95303f50d3
commit b3612dd90c
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ export default Ember.Component.extend({
if (this.get('isLoading')) {
return false;
}
if (this.get('isUserNameGiven')) {
if (this.get('isSecurityNotEnabled') && this.get('isUserNameGiven')) {
return false;
}
if (this.get('isStandardViewType')) {