Christie
Christie
WWindmill
Created by Christie on 1/17/2024 in #help
Auto Generated UI - Input argument label
also, similarly, wondering if there's a way to have enum options where the label to the operator is different than it's value in airplane, we were able to submit an array of objects with label and value example from airplane script parameter that I will need to recreate in windmill --
doc_type: {
type: 'integer',
name: 'Document Type',
options: [{ label: "Application", value: 1 }, { label: "Med Pay", value: 2 }]
}
doc_type: {
type: 'integer',
name: 'Document Type',
options: [{ label: "Application", value: 1 }, { label: "Med Pay", value: 2 }]
}
4 replies
WWindmill
Created by Christie on 1/17/2024 in #help
Auto Generated UI - Input argument label
example of something I'd want to do:
schema:
$schema: 'https://json-schema.org/draft/2020-12/schema'
type: object
properties:
policy_id_in:
type: string
description: ''
default: null
label: 'Policy ID' // is this supported?
has_auto_policy:
type: boolean
description: ''
default: null
label: 'Has auto policy?' // is this supported?
required:
- policy_id
- has_auto_policy
schema:
$schema: 'https://json-schema.org/draft/2020-12/schema'
type: object
properties:
policy_id_in:
type: string
description: ''
default: null
label: 'Policy ID' // is this supported?
has_auto_policy:
type: boolean
description: ''
default: null
label: 'Has auto policy?' // is this supported?
required:
- policy_id
- has_auto_policy
4 replies
WWindmill
Created by Christie on 1/17/2024 in #help
Rich Display - Markdown?
thank you!
5 replies