Fix #494 Connection error when connecting to an Azure SQL Server with no firewall rule (#497)

- Reenabled the link and added a click handler that actually opens up the help
- Changed to using an aka.ms link so that if the docs page changes in the future we can update the link and not need to re-ship the code
This commit is contained in:
Kevin Cunnane
2018-01-16 12:20:58 -08:00
committed by Karl Burtram
parent 7808496416
commit edd867b6fc
2 changed files with 14 additions and 7 deletions

View File

@@ -59,7 +59,7 @@ suite('Firewall rule dialog controller tests', () => {
.returns(() => mockFirewallRuleViewModel.object);
// Create a mock account picker
let firewallRuleDialog = new FirewallRuleDialog(null, null, null, instantiationService.object, null, null, new ContextKeyServiceStub());
let firewallRuleDialog = new FirewallRuleDialog(null, null, null, instantiationService.object, null, null, new ContextKeyServiceStub(), null);
mockFirewallRuleDialog = TypeMoq.Mock.ofInstance(firewallRuleDialog);
let mockEvent = new Emitter<any>();