We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0426e24 commit 6f5892bCopy full SHA for 6f5892b
src/components/dockerRegistry/Docker.tsx
@@ -716,11 +716,19 @@ function DockerForm({
716
...st.password,
717
error: id || st.password.value ? isValidJsonStr : 'Mandatory',
718
},
719
+ registryUrl: { ...st.registryUrl, error: st.registryUrl.value ? '' : 'Mandatory' },
720
+ }))
721
+ return
722
+ }
723
+ } else {
724
+ if (!customState.registryUrl.value) {
725
+ setCustomState((st) => ({
726
+ ...st,
727
728
}))
729
return
730
}
731
-
732
} else if (
733
selectedDockerRegistryType.value === RegistryType.ACR ||
734
selectedDockerRegistryType.value === RegistryType.QUAY ||
0 commit comments