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)} />,