💄 Git - Add icon to the message item (#170486)

This commit is contained in:
Ladislau Szomoru 2023-01-03 16:07:23 +01:00 committed by GitHub
parent a23a1090f7
commit 2377c7a4c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2405,7 +2405,7 @@ export class CommandCenter {
const remoteTagPicks = async (): Promise<TagItem[] | QuickPickItem[]> => {
const remoteTags = await repository.getRemoteRefs(remoteName, { tags: true });
return remoteTags.length === 0 ? [{ label: l10n.t('Remote "{0}" has no tags.', remoteName) }] : remoteTags.map(ref => new TagItem(ref));
return remoteTags.length === 0 ? [{ label: l10n.t('$(info) Remote "{0}" has no tags.', remoteName) }] : remoteTags.map(ref => new TagItem(ref));
};
const tagPickPlaceholder = l10n.t('Select a tag to delete');