pig update: decentralization, format date time
All checks were successful
Build and Release / release (push) Successful in 27s

This commit is contained in:
2026-04-20 00:47:41 +07:00
parent 5c622902ad
commit 49b99289bb
16 changed files with 779 additions and 240 deletions

View File

@@ -5,6 +5,7 @@ import ComponentCard from "@/components/common/ComponentCard";
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
import Pagination from "@/components/tables/Pagination";
import Swal from "sweetalert2";
import { ProtectedRoute } from "@/components/auth/ProtectedRoute";
import ApplicationTable, {
AppSortColumn,
@@ -190,8 +191,9 @@ export default function HistorianApplicationPage() {
console.log(tableData)
// console.log("Pagination info:", pagination);
return (
<div>
<PageBreadcrumb pageTitle="Quản lý hồ sơ" />
<ProtectedRoute requiredRoles={["ADMIN", "MOD", "HISTORIAN"]}>
<div>
<PageBreadcrumb pageTitle="Quản lý hồ sơ" />
<div className="space-y-6">
<ComponentCard
@@ -218,7 +220,6 @@ export default function HistorianApplicationPage() {
</button>
}
>
{/* Cập nhật Grid để chứa đủ các ô filter */}
<div className="grid grid-cols-1 gap-4 mb-6 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
<div>
<label className="block mb-2 text-sm font-medium">Tìm kiếm</label>
@@ -354,5 +355,6 @@ export default function HistorianApplicationPage() {
onRefresh={fetchApplications}
/>
</div>
</ProtectedRoute>
);
}