diff --git a/src/pages/AdminBulkActions.tsx b/src/pages/AdminBulkActions.tsx index 1a5bdba..3417d39 100644 --- a/src/pages/AdminBulkActions.tsx +++ b/src/pages/AdminBulkActions.tsx @@ -1756,28 +1756,56 @@ export default function AdminBulkActions() { () => [ { id: 'select', - size: 40, - header: ({ table }) => ( -
- + {/* Select all subscriptions */} + {isMultiTariff && allVisibleSubscriptionIds.length > 0 && ( + )} - aria-label={t('admin.bulkActions.selectAll')} - > - {table.getIsAllRowsSelected() && } - {table.getIsSomeRowsSelected() && !table.getIsAllRowsSelected() && ( -
- )} - -
- ), +
+ ); + }, cell: ({ row }) => { const userName = row.original.full_name || row.original.username || String(row.original.telegram_id);