From f52f13600f9d74e7b8b3c4250274eab7617e463a Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Thu, 15 Oct 2020 21:23:31 -0700 Subject: [PATCH] Fix text wrap on long server names in search bar --- .../components/dashboard/search/SearchModal.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/scripts/components/dashboard/search/SearchModal.tsx b/resources/scripts/components/dashboard/search/SearchModal.tsx index e8a2a7511..5bc1fe290 100644 --- a/resources/scripts/components/dashboard/search/SearchModal.tsx +++ b/resources/scripts/components/dashboard/search/SearchModal.tsx @@ -105,7 +105,7 @@ export default ({ ...props }: Props) => { to={`/server/${server.id}`} onClick={() => props.onDismissed()} > -
+

{server.name}

{ @@ -115,10 +115,10 @@ export default ({ ...props }: Props) => { }

-
- - {server.node} - +
+ + {server.node} +
))