Skip to content

Commit

Permalink
Require name when creating database (#24953)
Browse files Browse the repository at this point in the history
* add required mark

* remove extra comma
  • Loading branch information
barbaravaldez authored Nov 14, 2023
1 parent 0557761 commit 58d7ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/mssql/src/objectManagement/ui/databaseDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export class DatabaseDialog extends ObjectManagementDialogBase<Database, Databas
this.nameInput = this.createInputBox(async () => {
this.objectInfo.name = this.nameInput.value;
}, props);
containers.push(this.createLabelInputContainer(localizedConstants.NameText, this.nameInput));
containers.push(this.createLabelInputContainer(localizedConstants.NameText, this.nameInput, true));

let loginNames = this.viewInfo.loginNames?.options;
if (loginNames?.length > 0) {
Expand Down

0 comments on commit 58d7ed6

Please sign in to comment.