mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-20 18:20:12 +00:00
fix: i18n (#71)
* fix: block_identifier text * fix: i18n * chore: auto-fix linting and formatting issues * fix: block button * fix: ConfirmBlock text * fix: i18n --------- Co-authored-by: hamster1963 <hamster1963@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
co-authored by
hamster1963
parent
7fdac38291
commit
f694c97704
+5
-5
@@ -96,11 +96,11 @@ export default function WAFPage() {
|
||||
cell: ({ row }) => <span>{wafBlockReasons[row.original.block_reason] || ""}</span>,
|
||||
},
|
||||
{
|
||||
header: t("LastBlockIdentifier"),
|
||||
accessorKey: "lastBlockIdentifier",
|
||||
accessorFn: (row) => (
|
||||
<span>{wafBlockIdentifiers[row.block_identifier] || row.block_identifier}</span>
|
||||
),
|
||||
header: t("BlockIdentifier"),
|
||||
accessorKey: "BlockIdentifier",
|
||||
accessorFn: (row) => {
|
||||
return wafBlockIdentifiers[row.block_identifier] || row.block_identifier
|
||||
},
|
||||
},
|
||||
{
|
||||
header: t("LastBlockTime"),
|
||||
|
||||
Reference in New Issue
Block a user