mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
#591 - server-settings
This commit is contained in:
@ -19,6 +19,13 @@ export const columns: ColumnDef<Server>[] = [
|
||||
header: 'Name',
|
||||
enableColumnFilter: true,
|
||||
enableSorting: true,
|
||||
cell: ({ row }) => {
|
||||
return (
|
||||
<Link className="hover:underline" href={route('servers.show', { server: row.original.id })} prefetch>
|
||||
{row.original.name}
|
||||
</Link>
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
accessorKey: 'ip',
|
||||
|
Reference in New Issue
Block a user