mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
Fix parentheses for firewall ip address (#13903)
* fix parentheses for firewall ip address * use template string
This commit is contained in:
@@ -304,7 +304,7 @@ export class FirewallRuleDialog extends Modal {
|
||||
this.onAccountSelectionChange(this._accountPickerService.selectedAccount);
|
||||
this._fromRangeinputBox!.setPlaceHolder(this.viewModel!.defaultFromSubnetIPRange ?? '');
|
||||
this._toRangeinputBox!.setPlaceHolder(this.viewModel!.defaultToSubnetIPRange ?? '');
|
||||
this._IPAddressElement!.innerText = '(' + this.viewModel.defaultIPAddress ?? '' + ')';
|
||||
this._IPAddressElement!.innerText = `(${this.viewModel.defaultIPAddress ?? ''})`;
|
||||
|
||||
this.show();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user