Markdown feature parity for blueprint scripts vs automations (#16250)

This commit is contained in:
karwosts 2023-04-25 06:31:52 -07:00 committed by GitHub
parent 62ed1d54b0
commit ce8fc17ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,12 @@ export class HaBlueprintScriptEditor extends LitElement {
([key, value]) =>
html`<ha-settings-row .narrow=${this.narrow}>
<span slot="heading">${value?.name || key}</span>
<span slot="description">${value?.description}</span>
<ha-markdown
slot="description"
class="card-content"
breaks
.content=${value?.description}
></ha-markdown>
${value?.selector
? html`<ha-selector
.hass=${this.hass}