-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some standalone and other fixes #2110
Conversation
exc3eed
commented
Dec 1, 2017
•
edited
Loading
edited
- Login logout experiences for standalone version
- Custom popup window for Storage and Sql connection string for standalone version
- Unique subscription name validation is added for standalone version
- Hide refresh and create new app when subscription list is empty for standalone version
- Refresh button is removed from subscription menu for standalone version
- innerHtml is used for for displaying error text/content/link properly in cron validation section
- sidenav padding is removed for standalone version
- App setting and visual studio option is removed from app download dialog box
…function page. Dropdown is now updated after generic appsetings popup window closed
…from subscription menu bar
… use well known key name: 'AzureWebJobsStorage'
…lso display value changed
…te function App page
@exc3eed, |
return (control: AbstractControl): {[key: string]: any} => { | ||
return Promise.resolve({ friendlySubName: 'Check sub' }); | ||
}; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed. Remove it. A separate validation class is already created and used #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
ngOnInit() { | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: whitespace in this file #Resolved
import { SelectOption } from '../../shared/models/select-option'; | ||
import { TranslateService } from '@ngx-translate/core'; | ||
import { PortalResources } from '../../shared/models/portal-resources'; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: whitespace #Resolved
import { TranslateService } from '@ngx-translate/core'; | ||
import { UserService } from './../../shared/services/user.service'; | ||
import { Subscription } from './../../shared/models/subscription'; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whitespace #Resolved
@@ -181,7 +181,10 @@ | |||
<value>View files</value> | |||
</data> | |||
<data name="functionNew_chooseTemplate" xml:space="preserve"> | |||
<value>Choose a template below or</value> | |||
<value>Choose a template below</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you should make a new variable for this. Currently the "or" is needed as the message is: "Choose a template below or go to the quickstart" so omitting "or" would not make sense #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<radio-selector [options]="options" [defaultValue]="optionTypes.azure" (value)="optionsChange.next($event)"></radio-selector> | ||
</div> | ||
<div [class.disabled] = "option === optionTypes.azure"> | ||
<input [disabled] = "option === optionTypes.azure" type="text" placeholder="{{'storage_endpoint_empty_text' | translate}}" [(ngModel)]="endpoint" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<input [disabled] = "option === optionTypes.azure" type="text" placeholder="{{'storage_endpoint_empty_text' | translate}}" [(ngModel)]="endpoint" /> [](start = 28, length = 149)
nit: line to long, format so there is one attribute per line #Resolved
} | ||
|
||
|
||
@Input() set functionApp(functionApp: FunctionApp) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: whitespace #Resolved