diff --git a/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ArgumentsTab.tsx b/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ArgumentsTab.tsx
index a3eebf14..e575b80a 100644
--- a/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ArgumentsTab.tsx
+++ b/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ArgumentsTab.tsx
@@ -108,9 +108,6 @@ function ArgumentsTab({ state, schema, partialUpdate }: ArgumentsTabProps) {
argumentsHelper.accessor(arg => arg.typification, {
id: 'type',
header: 'Типизация',
- size: 150,
- minSize: 150,
- maxSize: 150,
enableHiding: true,
cell: props => (
{props.getValue()}
diff --git a/rsconcept/frontend/src/pages/LibraryPage/ViewLibrary.tsx b/rsconcept/frontend/src/pages/LibraryPage/ViewLibrary.tsx
index d347bd83..3fa8dab3 100644
--- a/rsconcept/frontend/src/pages/LibraryPage/ViewLibrary.tsx
+++ b/rsconcept/frontend/src/pages/LibraryPage/ViewLibrary.tsx
@@ -73,11 +73,8 @@ function ViewLibrary({ items, resetQuery: cleanQuery }: ViewLibraryProps) {
columnHelper.accessor('time_update', {
id: 'time_update',
header: 'Обновлена',
- size: 150,
- minSize: 150,
- maxSize: 150,
cell: props => (
- {new Date(props.cell.getValue()).toLocaleString(intl.locale)}
+ {new Date(props.cell.getValue()).toLocaleString(intl.locale)}
),
enableSorting: true,
sortingFn: 'datetime',
@@ -90,7 +87,14 @@ function ViewLibrary({ items, resetQuery: cleanQuery }: ViewLibraryProps) {
return (
<>
-
diff --git a/rsconcept/frontend/src/pages/RSFormPage/EditorRSList/RSTable.tsx b/rsconcept/frontend/src/pages/RSFormPage/EditorRSList/RSTable.tsx
index a040006c..35ccd253 100644
--- a/rsconcept/frontend/src/pages/RSFormPage/EditorRSList/RSTable.tsx
+++ b/rsconcept/frontend/src/pages/RSFormPage/EditorRSList/RSTable.tsx
@@ -72,11 +72,10 @@ function RSTable({ items, selected, setSelected, onEdit, onCreateNew }: RSTableP
columnHelper.accessor(cst => labelCstTypification(cst), {
id: 'type',
header: 'Типизация',
- size: 150,
- minSize: 150,
- maxSize: 150,
enableHiding: true,
- cell: props =>
{props.getValue()}
+ cell: props => (
+
{props.getValue()}
+ )
}),
columnHelper.accessor(cst => cst.term_resolved || cst.term_raw || '', {
id: 'term',
diff --git a/rsconcept/frontend/src/pages/UserProfilePage/ViewSubscriptions.tsx b/rsconcept/frontend/src/pages/UserProfilePage/ViewSubscriptions.tsx
index 6ab5a214..b67b1a6d 100644
--- a/rsconcept/frontend/src/pages/UserProfilePage/ViewSubscriptions.tsx
+++ b/rsconcept/frontend/src/pages/UserProfilePage/ViewSubscriptions.tsx
@@ -46,7 +46,7 @@ function ViewSubscriptions({ items }: ViewSubscriptionsProps) {
size: 150,
maxSize: 150,
cell: props => (
-
{new Date(props.cell.getValue()).toLocaleString(intl.locale)}
+
{new Date(props.cell.getValue()).toLocaleString(intl.locale)}
),
enableSorting: true
})