summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ListTable.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ListTable.tsx b/src/components/ListTable.tsx
index e90d2db..6874387 100644
--- a/src/components/ListTable.tsx
+++ b/src/components/ListTable.tsx
@@ -40,7 +40,7 @@ const ListTable: React.FC<Props> = ({ items = [], fields, handleRowClick = () =>
setSortBy(field.key);
}, [sortBy, sortOrder]);
- if (!items.length) return <div className="text-center p-6">No data</div>;
+ if (!items.length) return <div className="text-center p-6">Ничего не найдено</div>;
return (
<table className="table-auto w-full">