diff --git a/shell/edit/auth/github.vue b/shell/edit/auth/github.vue index 75b2d576d6..09292e0a77 100644 --- a/shell/edit/auth/github.vue +++ b/shell/edit/auth/github.vue @@ -97,6 +97,11 @@ export default { }, validationPassed() { + // Allows for configuring authorized users and groups + if ( this.model.enabled && !this.editConfig ) { + return true; + } + if (!this.model.clientId || !this.model.clientSecret) { return false; }