diff --git a/libs/punchapp/src/lib/config/tableConfig.tsx b/libs/punchapp/src/lib/config/tableConfig.tsx index 2b69cf83..f26bc7c8 100644 --- a/libs/punchapp/src/lib/config/tableConfig.tsx +++ b/libs/punchapp/src/lib/config/tableConfig.tsx @@ -121,12 +121,6 @@ const columnDefinitions: ColDef[] = [ ); }, }, - { - colId: 'FormType', - headerName: domainNames.formType, - headerTooltip: domainNames.formType, - valueGetter: (pkg) => pkg.data?.formularType, - }, { colId: 'Discipline', headerName: domainNames.mcDiscipline, @@ -145,6 +139,12 @@ const columnDefinitions: ColDef[] = [ 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',