From af9c2ad9347b1f6295e4ee9fbe01c63a578e08af Mon Sep 17 00:00:00 2001 From: Beltran Rodriguez Date: Wed, 17 Dec 2025 16:59:58 +0100 Subject: [PATCH] Fix --- .../docs/releases/01-Release Next/release-next.md | 6 ++++++ .../admin-portal/src/components/ElectoralLogList.tsx | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/docusaurus/docs/releases/01-Release Next/release-next.md b/docs/docusaurus/docs/releases/01-Release Next/release-next.md index ca30135ea1f..82107be933a 100644 --- a/docs/docusaurus/docs/releases/01-Release Next/release-next.md +++ b/docs/docusaurus/docs/releases/01-Release Next/release-next.md @@ -65,3 +65,9 @@ Now tally view checks if it's an automatic ceremony based on only the keys cerem Fixed an issue that prevented to search logs by username in the Admin portal. - Issue: [#7751](https://github.com/sequentech/meta/issues/7751) + +## 🐞 Admin Portal > Electoral Logs > Timestamp filter does not work + +Fix the filter by timestamp in the Admin Portal's UI. + +- Issue: [#9995](https://github.com/sequentech/meta/issues/9995) diff --git a/packages/admin-portal/src/components/ElectoralLogList.tsx b/packages/admin-portal/src/components/ElectoralLogList.tsx index a35dc6583f1..ef7596dd879 100644 --- a/packages/admin-portal/src/components/ElectoralLogList.tsx +++ b/packages/admin-portal/src/components/ElectoralLogList.tsx @@ -191,11 +191,19 @@ export const ElectoralLogList: React.FC = ({ const filters: Array = [ , , - , + (value ? new Date(`${value}Z`).toISOString() : value)} + />, (value ? new Date(`${value}Z`).toISOString() : value)} />,