Skip to content

Commit

Permalink
Don't lowercase the image tag (#4180)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft authored Nov 30, 2023
1 parent 10d465b commit 2c2539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tree/registries/registryTreeUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function getImageNameFromRegistryTagItem(tag: CommonTag): string {
}

const repository = tag.parent as CommonRepository;
return `${repository.label.toLowerCase()}:${tag.label.toLowerCase()}`;
return `${repository.label.toLowerCase()}:${tag.label}`; // Tag is case sensitive but repository must be lowercase
}

/**
Expand Down

0 comments on commit 2c2539c

Please sign in to comment.