diff --git a/ui/src/app/app-config/config-cursor.ts b/ui/src/app/app-config/config-cursor.ts index 1614d437b..337d7dfc6 100644 --- a/ui/src/app/app-config/config-cursor.ts +++ b/ui/src/app/app-config/config-cursor.ts @@ -223,6 +223,7 @@ export class ConfigCursor { if (max && length > max) { return spec.subtype === 'enum' ? 'Too many options selected.' : 'List is too long.' } + if (spec.subtype === 'enum') return null for (let idx in cfg) { let cursor = this.seekNext(idx) if (cursor.checkInvalid()) {