From e01ece624fd7f9e84d3f2c1f5ad1137ac0bdbd81 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 19 Feb 2026 13:35:16 -0600 Subject: [PATCH] fix description re-rendering for nullable object fields --- .../components/config-form/theme/templates/FieldTemplate.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/components/config-form/theme/templates/FieldTemplate.tsx b/web/src/components/config-form/theme/templates/FieldTemplate.tsx index e37279222..becf720df 100644 --- a/web/src/components/config-form/theme/templates/FieldTemplate.tsx +++ b/web/src/components/config-form/theme/templates/FieldTemplate.tsx @@ -109,7 +109,9 @@ export function FieldTemplate(props: FieldTemplateProps) { const isBoolean = schema.type === "boolean" || (Array.isArray(schema.type) && schema.type.includes("boolean")); - const isObjectField = schema.type === "object"; + const isObjectField = + schema.type === "object" || + (Array.isArray(schema.type) && schema.type.includes("object")); const isNullableUnion = isNullableUnionSchema(schema as StrictRJSFSchema); const isAdditionalProperty = ADDITIONAL_PROPERTY_FLAG in schema; const suppressMultiSchema =