mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 17:50:13 +00:00
fix: Duplicate template options (#51)
* fix: Duplicate template options * fix: form option i18n text
This commit is contained in:
+3
-1
@@ -69,7 +69,9 @@ export default function WAFPage() {
|
||||
header: t("LastBlockReason"),
|
||||
accessorKey: "lastBlockReason",
|
||||
accessorFn: (row) => row.last_block_reason,
|
||||
cell: ({ row }) => <span>{wafBlockReasons[row.original.last_block_reason] || ""}</span>,
|
||||
cell: ({ row }) => (
|
||||
<span>{wafBlockReasons(t)[row.original.last_block_reason] || ""}</span>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: t("LastBlockTime"),
|
||||
|
||||
Reference in New Issue
Block a user