Merge branch 'next/major' of github.com:Start9Labs/start-os into feature/start-tunnel

This commit is contained in:
Aiden McClelland
2025-10-31 15:42:05 -06:00
7 changed files with 26 additions and 4 deletions

View File

@@ -140,6 +140,8 @@ describe("values", () => {
warning: null,
minLength: null,
maxLength: null,
minRows: 3,
maxRows: 6,
placeholder: null,
}).build({} as any)
const validator = value.validator
@@ -452,6 +454,8 @@ describe("values", () => {
warning: null,
minLength: null,
maxLength: null,
minRows: 3,
maxRows: 6,
placeholder: null,
})).build({} as any)
const validator = value.validator

View File

@@ -81,8 +81,10 @@ const {InputSpec, List, Value, Variants} = sdk
required: !(value.nullable || false),
default: value.default,
placeholder: value.placeholder || null,
maxLength: null,
minLength: null,
maxLength: null,
minRows: 3,
maxRows: 6,
},
null,
2,