mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
Aasim/fix/sqldbtypos (#13130)
* fixed some easy typos on sql db wizard. * Fixed some instructions in the notebook * - Added option to enable or disable firewall rules * converted toggle firewall dropdown to checkbox
This commit is contained in:
@@ -10,6 +10,7 @@ import { DeployAzureSQLVMWizard } from '../deployAzureSQLVMWizard';
|
||||
import { apiService } from '../../../services/apiService';
|
||||
import { azureResource } from 'azureResource';
|
||||
import * as vscode from 'vscode';
|
||||
import * as localizedConstants from '../../../localizedConstants';
|
||||
|
||||
export class AzureSettingsPage extends WizardPageBase<DeployAzureSQLVMWizard> {
|
||||
// <- means depends on
|
||||
@@ -105,11 +106,11 @@ export class AzureSettingsPage extends WizardPageBase<DeployAzureSQLVMWizard> {
|
||||
});
|
||||
|
||||
this.signInButton = view.modelBuilder.button().withProperties<azdata.ButtonProperties>({
|
||||
label: 'Sign In',
|
||||
label: localizedConstants.signIn,
|
||||
width: '100px'
|
||||
}).component();
|
||||
this.refreshButton = view.modelBuilder.button().withProperties<azdata.ButtonProperties>({
|
||||
label: 'Refresh',
|
||||
label: localizedConstants.refresh,
|
||||
width: '100px'
|
||||
}).component();
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@ import * as constants from '../constants';
|
||||
import { DeployAzureSQLVMWizard } from '../deployAzureSQLVMWizard';
|
||||
import { BasePage } from './basePage';
|
||||
import * as nls from 'vscode-nls';
|
||||
import * as localizedConstants from '../../../localizedConstants';
|
||||
const localize = nls.loadMessageBundle();
|
||||
|
||||
export class SqlServerSettingsPage extends BasePage {
|
||||
@@ -167,11 +168,11 @@ export class SqlServerSettingsPage extends BasePage {
|
||||
this._sqlAuthenticationDropdown = view.modelBuilder.dropDown().withProperties(<azdata.DropDownComponent>{
|
||||
values: [
|
||||
{
|
||||
displayName: localize('deployAzureSQLVM.EnableSqlAuthenticationYesOption', "Yes"),
|
||||
displayName: localizedConstants.yes,
|
||||
name: 'True'
|
||||
},
|
||||
{
|
||||
displayName: localize('deployAzureSQLVM.EnableSqlAuthenticationNoOption', "No"),
|
||||
displayName: localizedConstants.no,
|
||||
name: 'False'
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user