From f1dcc7ce787c4a8c6f5af5b90cffad219c053ae7 Mon Sep 17 00:00:00 2001 From: Kilian Valkhof Date: Mon, 9 Dec 2024 10:22:38 +0100 Subject: [PATCH] add 28 days filter option --- src/components/input/DateFilter.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/input/DateFilter.tsx b/src/components/input/DateFilter.tsx index e486551d6..050bd8231 100644 --- a/src/components/input/DateFilter.tsx +++ b/src/components/input/DateFilter.tsx @@ -53,6 +53,10 @@ export function DateFilter({ value: '0month', divider: true, }, + { + label: formatMessage(labels.lastDays, { x: 28 }), + value: '28day', + }, { label: formatMessage(labels.lastDays, { x: 30 }), value: '30day',