Skip to content

Commit 1e01e15

Browse files
committed
Merge branch 'main' into fix-for-missing-labels-without-callback
2 parents c45802d + 68dbc7a commit 1e01e15

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/dockerRegistry/Docker.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,8 +1511,10 @@ function DockerForm({
15111511
)}
15121512
</>
15131513
)
1514-
}}
1515-
const EA_MODE_REGISTRY_TYPE_MAP = REGISTRY_TYPE_MAP
1514+
}
1515+
}
1516+
// For EA Mode GCR is not available as it is not OCI compliant
1517+
const EA_MODE_REGISTRY_TYPE_MAP = JSON.parse(JSON.stringify(REGISTRY_TYPE_MAP))
15161518
delete EA_MODE_REGISTRY_TYPE_MAP['gcr']
15171519
return (
15181520
<form onSubmit={handleOnSubmit} className="docker-form divider" autoComplete="off">

0 commit comments

Comments
 (0)