mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-02 13:01:23 +01:00
Disable endpont input fot docker-hub and helm-hub
Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
parent
2db1974081
commit
2d1c7ac76b
@ -38,6 +38,7 @@ const FAKE_PASSWORD = "rjGcfuRu";
|
|||||||
const FAKE_JSON_KEY = "No Change";
|
const FAKE_JSON_KEY = "No Change";
|
||||||
const METADATA_URL = CURRENT_BASE_HREF + "/replication/adapterinfos";
|
const METADATA_URL = CURRENT_BASE_HREF + "/replication/adapterinfos";
|
||||||
const HELM_HUB = "helm-hub";
|
const HELM_HUB = "helm-hub";
|
||||||
|
const FIXED_PATTERN_TYPE: string = "EndpointPatternTypeFix";
|
||||||
@Component({
|
@Component({
|
||||||
selector: "hbr-create-edit-endpoint",
|
selector: "hbr-create-edit-endpoint",
|
||||||
templateUrl: "./create-edit-endpoint.component.html",
|
templateUrl: "./create-edit-endpoint.component.html",
|
||||||
@ -271,6 +272,9 @@ export class CreateEditEndpointComponent
|
|||||||
if (this.endpointList.length === 1) {
|
if (this.endpointList.length === 1) {
|
||||||
this.target.url = this.endpointList[0].value;
|
this.target.url = this.endpointList[0].value;
|
||||||
}
|
}
|
||||||
|
if (this.adapterInfo[selectValue].endpoint_pattern.endpoint_type === FIXED_PATTERN_TYPE) {
|
||||||
|
this.urlDisabled = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.endpointList = [];
|
this.endpointList = [];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user