From 2ae237015dd0fd3a1b4423280bd8995f82e4d1a4 Mon Sep 17 00:00:00 2001 From: xoaaC <35452459+xoaaC@users.noreply.github.com> Date: Sat, 3 Dec 2022 15:45:18 +0100 Subject: [PATCH] fix(web/filters): truncate too long name (#545) * Fixed an issue where the div containing the filter name in the delete modal would overflow if the filter name is too long. Text inside the div is now contained and will word-break when too long. * Fixed an issue where the filter name headline would break into a second line if the filter name is too long. In case the filter name is too long the filter name headline will now truncate and show it's full value at mouseover. --- web/src/components/modals/index.tsx | 4 ++-- web/src/screens/filters/details.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/modals/index.tsx b/web/src/components/modals/index.tsx index c40628d..40623ee 100644 --- a/web/src/components/modals/index.tsx +++ b/web/src/components/modals/index.tsx @@ -50,8 +50,8 @@ export const DeleteModal: FC = ({ isOpen, buttonRef, toggle, d