From a2a8d283ffd8127002b68b9a5cfca77b4d9af624 Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Fri, 3 Feb 2023 03:10:28 -0500 Subject: [PATCH] Fixes url word breaking Would probably ideally be break-word for all the non URL related things in the form but I don't think it will have any effect on anything that's not URLs in practice? --- frontend/src/components/config-details.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/config-details.ts b/frontend/src/components/config-details.ts index 5ca14ad6..ed760347 100644 --- a/frontend/src/components/config-details.ts +++ b/frontend/src/components/config-details.ts @@ -274,7 +274,7 @@ export class ConfigDetails extends LiteElement { >`; } return html` - ${content} + ${content} `; } }