Compare commits

...

2 Commits

Author SHA1 Message Date
0c951f7b4c version changed to 02.55 2026-01-25 08:47:14 +03:30
4a719c9d1c add: tag dist time 2026-01-25 08:47:02 +03:30
3 changed files with 9 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ import {
} from "@heroicons/react/24/outline";
import { useModalStore } from "../../context/zustand-store/appStore";
import { useApiRequest } from "../../utils/useApiRequest";
import { formatJustDate } from "../../utils/formatTime";
import { formatJustDate, formatJustTime } from "../../utils/formatTime";
import ShowMoreInfo from "../../components/ShowMoreInfo/ShowMoreInfo";
import { Grid } from "../../components/Grid/Grid";
import Typography from "../../components/Typography/Typography";
@@ -61,7 +61,9 @@ export default function TagActiveDistributions() {
? index + 1
: index + tableInfo.page_size * (tableInfo.page - 1) + 1,
item?.dist_batch_identity,
formatJustDate(item?.create_date),
`${formatJustDate(item?.create_date)} (${formatJustTime(
item?.create_date
)})`,
item?.assigner_org?.name,
item?.assigned_org?.name,
item?.total_tag_count,

View File

@@ -7,7 +7,7 @@ import {
} from "@heroicons/react/24/outline";
import { useModalStore } from "../../context/zustand-store/appStore";
import { useApiRequest } from "../../utils/useApiRequest";
import { formatJustDate } from "../../utils/formatTime";
import { formatJustDate, formatJustTime } from "../../utils/formatTime";
import ShowMoreInfo from "../../components/ShowMoreInfo/ShowMoreInfo";
import { Grid } from "../../components/Grid/Grid";
import Typography from "../../components/Typography/Typography";
@@ -61,7 +61,9 @@ export default function TagCanceledDistributions() {
? index + 1
: index + tableInfo.page_size * (tableInfo.page - 1) + 1,
item?.dist_batch_identity,
formatJustDate(item?.create_date),
`${formatJustDate(item?.create_date)} (${formatJustTime(
item?.create_date
)})`,
item?.assigner_org?.name,
item?.assigned_org?.name,
item?.total_tag_count,

View File

@@ -1 +1 @@
02.54
02.55