mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-06 23:23:38 +00:00
fix params utils description setting
This commit is contained in:
@@ -51,7 +51,7 @@ export function schemaToParamsFormInfo(schema: SomeJSONSchema): ParamsFormInfo {
|
||||
key: paramKey,
|
||||
display: paramSchema.title ? paramSchema.title : paramKey,
|
||||
type: paramSchema.type,
|
||||
hint: paramSchema.description,
|
||||
hint: paramSchema.description ? paramSchema.description : undefined,
|
||||
isConst: !!paramSchema.const,
|
||||
schema: paramSchema,
|
||||
placeholder: '',
|
||||
|
||||
Reference in New Issue
Block a user