Skip to content

Commit e544ecf

Browse files
luannmoreiragustavosbarreto
authored andcommitted
fix(ui): open version validation
This commits fixes an issue where the validation for open versions is being true to cloud or enterprise, since which being true is not open, the new rules changes the logic to an AND.
1 parent 75b8a6b commit e544ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/Namespace/NamespaceInstructions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ const showNoNamespace = computed({
8181
},
8282
});
8383
84-
const openVersion = computed(() => !envVariables.isCloud || !envVariables.isEnterprise);
84+
const openVersion = computed(() => !envVariables.isCloud && !envVariables.isEnterprise);
8585
</script>

0 commit comments

Comments
 (0)