From 5317f8cb4d79aca52212b90296b0423818048b72 Mon Sep 17 00:00:00 2001 From: masl123 Date: Thu, 8 May 2025 18:31:02 +0200 Subject: [PATCH] Fix #1076 Field Descriptions missing via Components Section Adding a display block makes the descriptions appear in the components section. Note: The css display property was set to block (explicitly or implicitly) for all the other usages of the schema-table component, but not for this one. --- src/templates/components-template.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/templates/components-template.js b/src/templates/components-template.js index 4734304ed..0ec3ce7ae 100644 --- a/src/templates/components-template.js +++ b/src/templates/components-template.js @@ -21,6 +21,7 @@ function schemaBodyTemplate(sComponent) { schema-hide-read-only = "false" schema-hide-write-only = "${this.schemaHideWriteOnly}" exportparts = "schema-description:schema-description, schema-multiline-toggle:schema-multiline-toggle" + style="display:block;" > ` : html` ` } `;