mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix html structure of add account dialog (#4988)
This commit is contained in:
@@ -83,9 +83,10 @@ export class AutoOAuthDialog extends Modal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected renderBody(container: HTMLElement) {
|
protected renderBody(container: HTMLElement) {
|
||||||
this._descriptionElement = append(container, $('.auto-oauth-description-section.new-section'));
|
const body = append(container, $('.auto-oauth-dialog'));
|
||||||
|
this._descriptionElement = append(body, $('.auto-oauth-description-section.new-section'));
|
||||||
|
|
||||||
const addAccountSection = append(container, $('.auto-oauth-info-section.new-section'));
|
const addAccountSection = append(body, $('.auto-oauth-info-section.new-section'));
|
||||||
this._userCodeInputBox = this.createInputBoxHelper(addAccountSection, localize('userCode', 'User code'));
|
this._userCodeInputBox = this.createInputBoxHelper(addAccountSection, localize('userCode', 'User code'));
|
||||||
this._websiteInputBox = this.createInputBoxHelper(addAccountSection, localize('website', 'Website'));
|
this._websiteInputBox = this.createInputBoxHelper(addAccountSection, localize('website', 'Website'));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user