Skip to content

Commit

Permalink
style: taille colonne dans explorer (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
K4ST0R authored Oct 15, 2024
1 parent 3c3eb41 commit 786f4fa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ui/app/(explorer)/explorer/ResearchFormationsResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ export default function ResearchFormationsResult({
{
id: "lba",
header: "CatA",
size: 70,
minSize: 80,
size: 80,
Cell: ({ row }) => {
return (
<div>
Expand All @@ -185,17 +186,17 @@ export default function ResearchFormationsResult({
{
accessorKey: "code_formation_diplome",
header: "CFD",
size: 150,
size: 120,
},
{
accessorKey: "diplome.libelle",
header: "Diplôme",
size: 150,
size: 100,
},
{
id: "type",
header: "Filière",
size: 150,
size: 120,
accessorFn: (row) => {
return row.type === "cfd" ? "Apprentissage" : "Scolaire";
},
Expand Down

0 comments on commit 786f4fa

Please sign in to comment.