From 601c9090048e7a7cf64b56a5c2448e6a113af38c Mon Sep 17 00:00:00 2001 From: Zack Barett Date: Fri, 2 Oct 2020 11:29:29 -0500 Subject: [PATCH] Warning Element: Fix Overflow in Entity Row (#7193) --- src/panels/lovelace/components/hui-warning.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/panels/lovelace/components/hui-warning.ts b/src/panels/lovelace/components/hui-warning.ts index 5dac061e58..05732f51b1 100644 --- a/src/panels/lovelace/components/hui-warning.ts +++ b/src/panels/lovelace/components/hui-warning.ts @@ -1,3 +1,4 @@ +import { STATE_NOT_RUNNING } from "home-assistant-js-websocket"; import { css, CSSResult, @@ -7,7 +8,6 @@ import { TemplateResult, } from "lit-element"; import { HomeAssistant } from "../../../types"; -import { STATE_NOT_RUNNING } from "home-assistant-js-websocket"; export const createEntityNotFoundWarning = ( hass: HomeAssistant, @@ -35,6 +35,7 @@ export class HuiWarning extends LitElement { color: black; background-color: #fce588; padding: 8px; + word-break: break-word; } `; }