mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
Enhancement: Adjust column sizes in user table.
This commit is contained in:
parent
862abb0d57
commit
6d3616d524
1 changed files with 3 additions and 3 deletions
|
|
@ -209,7 +209,7 @@ const UsersTable = () => {
|
|||
{
|
||||
id: 'name',
|
||||
header: 'Name',
|
||||
size: 120,
|
||||
size: 125,
|
||||
minSize: 50,
|
||||
accessorFn: (row) =>
|
||||
`${row.first_name || ''} ${row.last_name || ''}`.trim(),
|
||||
|
|
@ -228,7 +228,7 @@ const UsersTable = () => {
|
|||
{
|
||||
header: 'Email',
|
||||
accessorKey: 'email',
|
||||
size: 200,
|
||||
size: 125,
|
||||
minSize: 50,
|
||||
cell: ({ getValue }) => (
|
||||
<Box
|
||||
|
|
@ -271,7 +271,7 @@ const UsersTable = () => {
|
|||
{
|
||||
header: 'XC Password',
|
||||
accessorKey: 'custom_properties',
|
||||
size: 100,
|
||||
size: 125,
|
||||
minSize: 95,
|
||||
enableSorting: false,
|
||||
cell: XCPasswordCell,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue