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 bfb2b69 commit 78fb69eCopy full SHA for 78fb69e
src/extension/ui/src/queries/useCatalog.ts
@@ -44,13 +44,14 @@ function useCatalog(client: v1.DockerDesktopClient) {
44
// Check if any required parameters are not configured
45
const missingConfig =
46
!isEmpty(item.config) &&
47
- requiredParameters.some((key) => {
48
- const isMissing = isEqual(
49
- itemConfigValue[key],
50
- baseConfigTemplate[key],
51
- );
52
- return isMissing;
53
- });
+ (neverOnceConfigured ||
+ requiredParameters.some((key) => {
+ const isMissing = isEqual(
+ itemConfigValue[key],
+ baseConfigTemplate[key],
+ );
+ return isMissing;
54
+ }));
55
56
const missingASecret = secretsWithAssignment.some(
57
(secret) => !secret.assigned,
0 commit comments