Skip to content

Commit

Permalink
fixed build error
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzgrewal committed Jun 26, 2024
1 parent 6b43155 commit 13fccd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/services/OpeningService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export async function fetchRecentOpenings(): Promise<RecentOpening[]> {
timberMark: opening.timberMark ? opening.timberMark : '-',
cutBlock: opening.cutBlock ? opening.cutBlock : '-',
grossAreaHa: opening.grossAreaHa ? opening.grossAreaHa.toString() : '-',
status: opening.status ? opening.status.description : '-',
category: opening.category ? opening.category.code : '-',
status: opening.statusDesc ? opening.statusDesc : '-',
category: opening.categoryDesc ? opening.categoryDesc : '-',
disturbanceStart: opening.disturbanceStart ? opening.disturbanceStart : '-',
entryTimestamp: opening.entryTimestamp ? opening.entryTimestamp.split('T')[0] : '-',
updateTimestamp: opening.updateTimestamp ? opening.updateTimestamp.split('T')[0] : '-'
Expand Down

0 comments on commit 13fccd4

Please sign in to comment.