From 4cbe6bcda66316b1d51f9cdfdbde1209dfd4c60e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 3 Apr 2026 19:11:53 -0500 Subject: [PATCH] fix params utils description setting --- src/app/utils/params.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/params.ts b/src/app/utils/params.ts index 2a6c7db..3e43398 100644 --- a/src/app/utils/params.ts +++ b/src/app/utils/params.ts @@ -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: '',