We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d87ce commit fffe1f3Copy full SHA for fffe1f3
src/components/schema-tree.js
@@ -153,7 +153,7 @@ export default class SchemaTree extends LitElement {
153
: key.startsWith('OPTION')
154
? html`<span class="any-of-one-of" >${key.replace('OPTION_', ' ')}</span>`
155
: key.endsWith('*')
156
- ? html`${key.substring(0, key.length - 1)}<span style='color:var(--delete-color)'>*</span>:`
+ ? html`<span style='color:var(--delete-color)'>*</span>${key.substring(0, key.length - 1)}:`
157
: html`${key}:`
158
: ''
159
}
0 commit comments