From fc993fdfe6ddc1826d1498ebaec2d6f7cfff965f Mon Sep 17 00:00:00 2001 From: Logan Date: Sat, 23 May 2026 13:05:53 -0400 Subject: [PATCH] call table update --- drb-frontend/app/calls/page.tsx | 4 ++-- drb-frontend/components/CallRow.tsx | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/drb-frontend/app/calls/page.tsx b/drb-frontend/app/calls/page.tsx index 52bf715..a264b6c 100644 --- a/drb-frontend/app/calls/page.tsx +++ b/drb-frontend/app/calls/page.tsx @@ -14,7 +14,7 @@ const inputCls = function filterCalls(calls: CallRecord[], filters: Filters): CallRecord[] { const q = filters.query.trim().toLowerCase(); const tgid = filters.tgid.trim(); - const fromMs = filters.dateFrom ? new Date(filters.dateFrom).getTime() : null; + const fromMs = filters.dateFrom ? new Date(filters.dateFrom + "T00:00:00").getTime() : null; const toMs = filters.dateTo ? new Date(filters.dateTo + "T23:59:59").getTime() : null; return calls.filter((c) => { @@ -248,7 +248,7 @@ export default function CallsPage() { - {!activeFilters && ended.length >= limitCount && ( + {ended.length >= limitCount && (