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

pull/7702/head
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
1 changed files with 1 additions and 1 deletions

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';
}