fix default type

This commit is contained in:
nicwands
2026-02-24 14:05:45 -05:00
parent 52d7d78a84
commit 0f1acd9528
3 changed files with 9 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ export interface ConfigField {
key: string
label: string
type: 'text' | 'password' | 'directory' | 'number' | 'boolean'
default: 'text' | 'password' | 'directory' | 'number' | 'boolean'
default: string
required?: boolean
}