1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00

fix(registry): fix anonymous dockerhub name to make it same with BE [EE-4208] (#7690)

This commit is contained in:
Hao 2022-09-19 16:52:15 +08:00 committed by GitHub
parent 47f2490059
commit 70ce4e70d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,6 @@ import { RegistryTypes } from './registryTypes';
export function DockerHubViewModel() {
this.Id = 0;
this.Type = RegistryTypes.ANONYMOUS;
this.Name = 'DockerHub (anonymous)';
this.Name = 'Docker Hub (anonymous)';
this.URL = 'docker.io';
}