From 3bd1a4511f7e21299f3ac6b4876af367a5045ca4 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Sat, 16 Dec 2023 18:43:41 +0000 Subject: [PATCH] UI: error messages wrap now --- crates/librqbit/webui/src/components/ErrorComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/librqbit/webui/src/components/ErrorComponent.tsx b/crates/librqbit/webui/src/components/ErrorComponent.tsx index 85f8e43..3da064e 100644 --- a/crates/librqbit/webui/src/components/ErrorComponent.tsx +++ b/crates/librqbit/webui/src/components/ErrorComponent.tsx @@ -36,7 +36,7 @@ export const ErrorComponent = (props: { {error.details?.statusText && (
{error.details?.statusText}
)} -
{error.details?.text}
+
{error.details?.text}
); };