Skip to content

Commit

Permalink
feat(handover): Add description of work to handover (#969)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBrunton authored Apr 24, 2024
1 parent 91d0c51 commit 8b341e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions libs/handovershared/src/lib/types/handoverPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,5 @@ export type HandoverPackage = {
status: BaseStatus; //Comm. pkg status in procosys
worstChecklistStatus: string;
hasNonCountingScope: boolean | null;
descriptionOfWork: string | null;
};
6 changes: 5 additions & 1 deletion libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,13 @@ export const DetailsTab = ({ commpkg }: DetailsTabProps) => {
<td>{stringCell(`${commpkg.progress || 0}%`)}</td>
</tr>
<tr>
<td> Mc Packages Missing PunchOut</td>
<td>Mc Packages Missing PunchOut</td>
<td>{stringCell(`${commpkg.remainingPunchOutCount || 0}`)}</td>
</tr>
<tr>
<td>Description of Work</td>
<td>{stringCell(`${commpkg.descriptionOfWork || 0}`)}</td>
</tr>
</tbody>
</StyledTable>

Expand Down

0 comments on commit 8b341e9

Please sign in to comment.