Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions l10n/bundle.l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,7 @@
"No Azure VMs found with tag \"{tagName}\" in subscription \"{subscriptionName}\".": "No Azure VMs found with tag \"{tagName}\" in subscription \"{subscriptionName}\".",
"No collection selected.": "No collection selected.",
"No commands found in this document.": "No commands found in this document.",
"No connections selected to remove.": "No connections selected to remove.",
"No Connectivity": "No Connectivity",
"No credentials found for id {credentialId}": "No credentials found for id {credentialId}",
"No credentials found for the selected cluster.": "No credentials found for the selected cluster.",
Expand Down
1 change: 1 addition & 0 deletions src/commands/removeConnection/removeConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export async function removeConnection(
}

if (connectionsToDelete.length === 0) {
ext.outputChannel.warn(l10n.t('No connections selected to remove.'));
return;
}

Expand Down