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 8ccd69b commit 0cde5d0Copy full SHA for 0cde5d0
src/components/schema-tree.js
@@ -86,7 +86,7 @@ export default class SchemaTree extends LitElement {
86
<div class='toolbar-item bold-text upper' style='cursor:auto; color:var(--fg3)'> ${this.data ? this.data['::type'] : ''} </div>
87
<div style="flex:1"></div>
88
<div class='toolbar-item' @click='${() => { this.schemaDescriptionExpanded = (this.schemaDescriptionExpanded === 'true' ? 'false' : 'true'); }}'>
89
- ${this.schemaDescriptionExpanded === 'true' ? 'Collapse Details' : 'Expand Details'}
+ ${this.schemaDescriptionExpanded === 'true' ? 'Single line description' : 'Multiline description'}
90
</div>
91
92
<span class='m-markdown'> ${this.data ? unsafeHTML(marked(this.data['::description'] || '')) : ''}</span>
0 commit comments