From 5de55389cc6e89f068f3a4e98fce35c1fd209f23 Mon Sep 17 00:00:00 2001 From: Beltran Rodriguez Date: Wed, 17 Dec 2025 15:14:00 +0000 Subject: [PATCH 1/3] Fix --- .../admin-portal/src/components/ElectoralLogList.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/admin-portal/src/components/ElectoralLogList.tsx b/packages/admin-portal/src/components/ElectoralLogList.tsx index c5697fbb446..d9a71ed998e 100644 --- a/packages/admin-portal/src/components/ElectoralLogList.tsx +++ b/packages/admin-portal/src/components/ElectoralLogList.tsx @@ -204,11 +204,23 @@ export const ElectoralLogList: React.FC = ({ key={"created"} source={"created"} label={String(t("logsScreen.column.created"))} + slotProps={{ + htmlInput: { + step: 1, // Adds seconds field to the datetime input + } + }} + parse={(value) => (value ? new Date(`${value}Z`).toISOString() : value)} />, (value ? new Date(`${value}Z`).toISOString() : value)} />, Date: Wed, 17 Dec 2025 15:20:46 +0000 Subject: [PATCH 2/3] Release notes --- .../docs/08-releases/01-release-next/release-next.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/docusaurus/docs/08-releases/01-release-next/release-next.md b/docs/docusaurus/docs/08-releases/01-release-next/release-next.md index 1759bdf1cdf..a93afaca197 100644 --- a/docs/docusaurus/docs/08-releases/01-release-next/release-next.md +++ b/docs/docusaurus/docs/08-releases/01-release-next/release-next.md @@ -125,3 +125,9 @@ Now tally view checks if it's an automatic ceremony based on only the keys cerem Documentation sidebar order has been restructured - Issue: [#8672](https://github.com/sequentech/meta/issues/8672) + +## 🐞 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) From 78ad0963f71a0468f440161aa662689744cdf257 Mon Sep 17 00:00:00 2001 From: Beltran Rodriguez Date: Wed, 17 Dec 2025 15:36:44 +0000 Subject: [PATCH 3/3] Format --- packages/admin-portal/src/components/ElectoralLogList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/admin-portal/src/components/ElectoralLogList.tsx b/packages/admin-portal/src/components/ElectoralLogList.tsx index d9a71ed998e..e3018de23d9 100644 --- a/packages/admin-portal/src/components/ElectoralLogList.tsx +++ b/packages/admin-portal/src/components/ElectoralLogList.tsx @@ -207,7 +207,7 @@ export const ElectoralLogList: React.FC = ({ slotProps={{ htmlInput: { step: 1, // Adds seconds field to the datetime input - } + }, }} parse={(value) => (value ? new Date(`${value}Z`).toISOString() : value)} />, @@ -218,7 +218,7 @@ export const ElectoralLogList: React.FC = ({ slotProps={{ htmlInput: { step: 1, // Adds seconds field to the datetime input - } + }, }} parse={(value) => (value ? new Date(`${value}Z`).toISOString() : value)} />,