change monitoring not supported message

This commit is contained in:
smanylov
2026-03-14 11:52:13 +07:00
parent be06d7b833
commit 8464616c37
4 changed files with 11 additions and 1 deletions
@@ -409,8 +409,12 @@ export default function TanstakFilesTable({ fileType }: { fileType: string }) {
{row.original.fileType === 'image' ? ( {row.original.fileType === 'image' ? (
<MonitoringDropDown file={row.original} /> <MonitoringDropDown file={row.original} />
) : ( ) : (
<div> <div
className="table-item-not-supported"
>
{t('monitoring-is-not-supported')} {t('monitoring-is-not-supported')}
<br />
{t('for-this-file-type')}
</div> </div>
)} )}
</div> </div>
+4
View File
@@ -813,6 +813,10 @@
.table-item { .table-item {
color: v.$text-s; color: v.$text-s;
font-size: 14px; font-size: 14px;
&-not-supported {
font-size: 12px;
}
} }
.table-item-protected { .table-item-protected {
+1
View File
@@ -296,6 +296,7 @@
"there-are-not-enough-funds-to-protect-file": "There are not enough funds to protect file. {count} tokens required", "there-are-not-enough-funds-to-protect-file": "There are not enough funds to protect file. {count} tokens required",
"duplicate-files": "Duplicate files", "duplicate-files": "Duplicate files",
"monitoring-is-not-supported": "Monitoring is not supported", "monitoring-is-not-supported": "Monitoring is not supported",
"for-this-file-type": "for this file type",
"frequently-asked-questions": "Frequently Asked Questions", "frequently-asked-questions": "Frequently Asked Questions",
"select-a-token-package": "Select a token package", "select-a-token-package": "Select a token package",
"package-selected-tokens-price": "Package selected: {tokens} tokens for {price}₽", "package-selected-tokens-price": "Package selected: {tokens} tokens for {price}₽",
+1
View File
@@ -296,6 +296,7 @@
"there-are-not-enough-funds-to-protect-file": "Для защиты файла недостаточно средств. Необходимо {count} токен(ов/а)", "there-are-not-enough-funds-to-protect-file": "Для защиты файла недостаточно средств. Необходимо {count} токен(ов/а)",
"duplicate-files": "Дубликаты файлов", "duplicate-files": "Дубликаты файлов",
"monitoring-is-not-supported": "Мониторинг не поддерживается", "monitoring-is-not-supported": "Мониторинг не поддерживается",
"for-this-file-type": "для данного типа файлов",
"frequently-asked-questions": "Часто задаваемые вопросы", "frequently-asked-questions": "Часто задаваемые вопросы",
"select-a-token-package": "Выберите пакет токенов", "select-a-token-package": "Выберите пакет токенов",
"package-selected-tokens-price": "Выбран пакет: {tokens} токенов за {price}₽", "package-selected-tokens-price": "Выбран пакет: {tokens} токенов за {price}₽",