diff --git a/src/app/ui/referral-page/table/invitations-table.tsx b/src/app/ui/referral-page/table/invitations-table.tsx index a0c37ae..4963704 100644 --- a/src/app/ui/referral-page/table/invitations-table.tsx +++ b/src/app/ui/referral-page/table/invitations-table.tsx @@ -137,8 +137,8 @@ export default function InvitationsTable() { cell: ({ row }) => { return (
- - {row.original.status} + + {row.original.status ? t(row.original.status) : '#'}
) diff --git a/src/i18n/messages/en.json b/src/i18n/messages/en.json index d8bad60..9a81fdd 100644 --- a/src/i18n/messages/en.json +++ b/src/i18n/messages/en.json @@ -276,7 +276,9 @@ "method": "Method", "processed": "Processed", "request-date": "Request date", - "user-not-have-tokens-for-protect": "The user does not have any tokens for protection." + "user-not-have-tokens-for-protect": "The user does not have any tokens for protection.", + "active": "Active", + "not-active": "Not active" }, "Login-register-form": { "and": "and", diff --git a/src/i18n/messages/ru.json b/src/i18n/messages/ru.json index eeb21e4..1edf1e7 100644 --- a/src/i18n/messages/ru.json +++ b/src/i18n/messages/ru.json @@ -276,7 +276,9 @@ "method": "Способ", "processed": "Обработано", "request-date": "Дата запроса", - "user-not-have-tokens-for-protect": "У пользователя нет токенов для защиты" + "user-not-have-tokens-for-protect": "У пользователя нет токенов для защиты", + "active": "Активен", + "not-active": "Не активен" }, "Login-register-form": { "and": "и",