Skip to content

Commit 4f7f32b

Browse files
committed
added missing title for primitives in schema tree
1 parent d5bd9b4 commit 4f7f32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/schema-tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export default class SchemaTree extends LitElement {
232232
${keyLabel.endsWith('*')
233233
? html`<span class="key-label">${keyLabel.substring(0, keyLabel.length - 1)}</span><span style='color:var(--red);'>*</span>:`
234234
: key.startsWith('::OPTION')
235-
? html`<span class='key-label xxx-of-key'>${keyLabel}</span>`
235+
? html`<span class='key-label xxx-of-key'>${keyLabel}</span><span class="xxx-of-descr">${keyDescr}</span>`
236236
: html`<span class="key-label">${keyLabel}</span>:`
237237
}
238238
<span class='${dataTypeCss}'>

0 commit comments

Comments
 (0)