Add DB Reference quickpick dialog (#16601)

* Add DB Reference quickpick dialog

* pr comments & cleanup
This commit is contained in:
Charles Gagnon
2021-08-09 12:46:53 -07:00
committed by GitHub
parent c22589574c
commit b2ff8162e6
7 changed files with 342 additions and 41 deletions

View File

@@ -269,7 +269,7 @@ export class CreateProjectFromDatabaseDialog {
this.projectLocationTextBox = view.modelBuilder.inputBox().withProps({
value: '',
ariaLabel: constants.projectLocationLabel,
ariaLabel: constants.location,
placeHolder: constants.projectLocationPlaceholderText,
width: cssStyles.createProjectFromDatabaseTextboxWidth
}).component();
@@ -280,7 +280,7 @@ export class CreateProjectFromDatabaseDialog {
});
const projectLocationLabel = view.modelBuilder.text().withProps({
value: constants.projectLocationLabel,
value: constants.location,
requiredIndicator: true,
width: cssStyles.createProjectFromDatabaseLabelWidth
}).component();