Fix no listener margin in flow preview template (#17837)

This commit is contained in:
Paul Bottein 2023-09-06 13:41:16 +02:00 committed by GitHub
parent 14e6f5e8ca
commit ad0e59c8f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ class FlowPreviewGroup extends LitElement {
private _setPreview = (preview: GroupPreview) => { private _setPreview = (preview: GroupPreview) => {
const now = new Date().toISOString(); const now = new Date().toISOString();
this._preview = { this._preview = {
entity_id: `${this.stepId}.flow_preview`, entity_id: `${this.stepId}.___flow_preview___`,
last_changed: now, last_changed: now,
last_updated: now, last_updated: now,
context: { id: "", parent_id: null, user_id: null }, context: { id: "", parent_id: null, user_id: null },

View File

@ -110,11 +110,11 @@ class FlowPreviewTemplate extends LitElement {
</ul> </ul>
` `
: !this._listeners.time : !this._listeners.time
? html`<span class="all_listeners"> ? html`<p class="all_listeners">
${this.hass.localize( ${this.hass.localize(
"ui.dialogs.helper_settings.template.no_listeners" "ui.dialogs.helper_settings.template.no_listeners"
)} )}
</span>` </p>`
: nothing} `; : nothing} `;
} }
@ -128,7 +128,7 @@ class FlowPreviewTemplate extends LitElement {
this._listeners = preview.listeners; this._listeners = preview.listeners;
const now = new Date().toISOString(); const now = new Date().toISOString();
this._preview = { this._preview = {
entity_id: `${this.stepId}.flow_preview`, entity_id: `${this.stepId}.___flow_preview___`,
last_changed: now, last_changed: now,
last_updated: now, last_updated: now,
context: { id: "", parent_id: null, user_id: null }, context: { id: "", parent_id: null, user_id: null },