From ce83bc3f9e3174668280fef78a37b8ff4506b5c9 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Tue, 23 Aug 2022 15:15:54 +0200 Subject: [PATCH] change(ui) - alerts list page limit to 10 --- .../app/components/Dashboard/components/Alerts/AlertsList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Dashboard/components/Alerts/AlertsList.tsx b/frontend/app/components/Dashboard/components/Alerts/AlertsList.tsx index e20eb8cd1..18019db9d 100644 --- a/frontend/app/components/Dashboard/components/Alerts/AlertsList.tsx +++ b/frontend/app/components/Dashboard/components/Alerts/AlertsList.tsx @@ -8,7 +8,7 @@ import { fetchList as fetchWebhooks } from 'Duck/webhook'; import AlertListItem from './AlertListItem' -const pageSize = 20; +const pageSize = 10; interface Props { fetchList: () => void;