From e10bc349623978efea8e11ad2b575eaf4c7be7a7 Mon Sep 17 00:00:00 2001 From: Test Date: Sun, 7 Apr 2024 16:05:20 +0300 Subject: [PATCH] fix(ui): truncate alert name in history panel (#1060) --- keep-ui/app/alerts/alert-history.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keep-ui/app/alerts/alert-history.tsx b/keep-ui/app/alerts/alert-history.tsx index 0577d535d7..33a0db974b 100644 --- a/keep-ui/app/alerts/alert-history.tsx +++ b/keep-ui/app/alerts/alert-history.tsx @@ -49,8 +49,8 @@ const AlertHistoryPanel = ({ return ( -
- History of: {alertsHistoryWithDate.at(0)?.name} +
+ History of: {alertsHistoryWithDate.at(0)?.name} Showing: {alertsHistoryWithDate.length} alerts (1000 maximum)