Skip to content

Commit

Permalink
fix: duplicate punch column formType, add PL priority (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas authored Aug 9, 2024
1 parent dc4c80e commit 88763c5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/punchapp/src/lib/config/tableConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,6 @@ const columnDefinitions: ColDef<Punch>[] = [
);
},
},
{
colId: 'FormType',
headerName: domainNames.formType,
headerTooltip: domainNames.formType,
valueGetter: (pkg) => pkg.data?.formularType,
},
{
colId: 'Discipline',
headerName: domainNames.mcDiscipline,
Expand All @@ -145,6 +139,12 @@ const columnDefinitions: ColDef<Punch>[] = [
headerTooltip: domainNames.punchType,
valueGetter: (pkg) => pkg.data?.type,
},
{
colId: 'Priority',
headerName: domainNames.punchPriority,
headerTooltip: domainNames.punchPriority,
valueGetter: (pkg) => pkg.data?.priority,
},
{
colId: 'Estimate',
headerName: 'Estimate',
Expand Down

0 comments on commit 88763c5

Please sign in to comment.