exit infite loop after closing error message (#19376)

This commit is contained in:
Barbara Valdez
2022-05-13 15:14:48 -07:00
committed by GitHub
parent b8858f011d
commit f551cfb835

View File

@@ -86,6 +86,9 @@ export async function createAzureFunction(node?: ITreeNodeInfo): Promise<void> {
TelemetryReporter.createActionEvent(TelemetryViews.CreateAzureFunctionWithSqlBinding, telemetryStep)
.withAdditionalProperties(propertyBag).send();
break;
} else {
// user cancelled
return;
}
}
} else {