We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe092f commit 93019e5Copy full SHA for 93019e5
src/commands/addMIConnections/ConnectionsListStep.ts
@@ -41,6 +41,10 @@ export class ConnectionsListStep extends AzureWizardPromptStep<AddMIConnectionsC
41
return !context.connections || context.connections.length === 0;
42
}
43
44
+ public undo(context: AddMIConnectionsContext): void | Promise<void> {
45
+ context.connections = [];
46
+ }
47
+
48
private async getPicks(context: AddMIConnectionsContext): Promise<IAzureQuickPickItem<Connection>[]> {
49
return context.functionapp ? this.getRemoteQuickPicks(context) : this.getLocalQuickPicks(context)
50
0 commit comments