fixup time range error

This commit is contained in:
oiov
2025-05-09 16:06:55 +08:00
parent d8b0ef455d
commit bd8c4eb01c
3 changed files with 3 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ export default function SendsEmailList({
</div>
{data && totalPages > 1 && (
<PaginationWrapper
className="m-0 mt-6 scale-75 justify-center"
className="m-0 mt-6"
total={data.total}
currentPage={currentPage}
setCurrentPage={setCurrentPage}

View File

@@ -299,6 +299,7 @@ export const TIME_RANGES: Record<string, number> = {
"90d": 90 * 24 * 60 * 60 * 1000,
"180d": 180 * 24 * 60 * 60 * 1000,
"365d": 365 * 24 * 60 * 60 * 1000,
All: 3650 * 24 * 60 * 60 * 1000,
};
export const DATE_DIMENSION_ENUMS = [

File diff suppressed because one or more lines are too long