diff --git a/extensions/sql-database-projects/src/models/deploy/deployService.ts b/extensions/sql-database-projects/src/models/deploy/deployService.ts index 5787898d79..4f52f2f0c3 100644 --- a/extensions/sql-database-projects/src/models/deploy/deployService.ts +++ b/extensions/sql-database-projects/src/models/deploy/deployService.ts @@ -181,7 +181,11 @@ export class DeployService { // Clean up existing docker image const containerIds = await this.getCurrentDockerContainer(imageLabel); if (containerIds.length > 0) { - const result = await vscode.window.showWarningMessage(constants.containerAlreadyExistForProject, constants.yesString, constants.noString); + const result = await vscode.window.showQuickPick([constants.yesString, constants.noString], + { + title: constants.containerAlreadyExistForProject, + ignoreFocusOut: true + }); if (result === constants.yesString) { this.logToOutput(constants.cleaningDockerImagesMessage); await this.cleanDockerObjects(containerIds, ['docker stop', 'docker rm']);