@@ -13,7 +13,7 @@ import {
1313 Modal
1414} from "@carbon/react" ;
1515import { CropGrowth , DiamondOutline , Layers , Popup , Search } from "@carbon/icons-react" ;
16- import { NOT_APPLICABLE , PLACE_HOLDER } from "@/constants" ;
16+ import { PLACE_HOLDER } from "@/constants" ;
1717import TableSkeleton from "@/components/TableSkeleton" ;
1818import EmptySection from "@/components/EmptySection" ;
1919import { StockingStatusTag } from "@/components/Tags" ;
@@ -155,10 +155,10 @@ const OpeningForestCover = ({
155155 < div className = "opening-forest-cover-cell-multiple-lines" >
156156 < span > Polygon ID: { row . polygonId } </ span >
157157 < span >
158- Standard unit: { row . standardUnitId ?? NOT_APPLICABLE }
158+ Standard unit: { row . standardUnitId ?? PLACE_HOLDER }
159159 </ span >
160160 < span >
161- Unmapped area: { row . unmappedArea . code ? codeDescriptionToDisplayText ( row . unmappedArea ) : NOT_APPLICABLE }
161+ Unmapped area: { row . unmappedArea . code ? codeDescriptionToDisplayText ( row . unmappedArea ) : PLACE_HOLDER }
162162 </ span >
163163 </ div >
164164 ) ;
@@ -226,12 +226,12 @@ const OpeningForestCover = ({
226226 < span > Species: { displayText } </ span >
227227 </ DefinitionTooltip >
228228 )
229- : `Species: ${ NOT_APPLICABLE } `
229+ : `Species: ${ PLACE_HOLDER } `
230230 }
231- < span > Total: { row . inventoryLayer . total !== null ? `${ row . inventoryLayer . total } (st/ha)` : NOT_APPLICABLE } </ span >
232- < span > Total well spaced: { row . inventoryLayer . totalWellSpaced !== null ? `${ row . inventoryLayer . totalWellSpaced } (st/ha)` : NOT_APPLICABLE } </ span >
233- < span > Well spaced: { row . inventoryLayer . wellSpaced !== null ? `${ row . inventoryLayer . wellSpaced } (st/ha)` : NOT_APPLICABLE } </ span >
234- < span > Free growing: { row . inventoryLayer . freeGrowing !== null ? `${ row . inventoryLayer . freeGrowing } (st/ha)` : NOT_APPLICABLE } </ span >
231+ < span > Total: { row . inventoryLayer . total !== null ? `${ row . inventoryLayer . total } (st/ha)` : PLACE_HOLDER } </ span >
232+ < span > Total well spaced: { row . inventoryLayer . totalWellSpaced !== null ? `${ row . inventoryLayer . totalWellSpaced } (st/ha)` : PLACE_HOLDER } </ span >
233+ < span > Well spaced: { row . inventoryLayer . wellSpaced !== null ? `${ row . inventoryLayer . wellSpaced } (st/ha)` : PLACE_HOLDER } </ span >
234+ < span > Free growing: { row . inventoryLayer . freeGrowing !== null ? `${ row . inventoryLayer . freeGrowing } (st/ha)` : PLACE_HOLDER } </ span >
235235 </ div >
236236 ) ;
237237 }
@@ -258,11 +258,11 @@ const OpeningForestCover = ({
258258 < span > Species: { displayText } </ span >
259259 </ DefinitionTooltip >
260260 )
261- : `Species: ${ NOT_APPLICABLE } `
261+ : `Species: ${ PLACE_HOLDER } `
262262 }
263- < span > Total well spaced: { row . silvicultureLayer . totalWellSpaced !== null ? `${ row . silvicultureLayer . totalWellSpaced } (st/ha)` : NOT_APPLICABLE } </ span >
264- < span > Well spaced: { row . silvicultureLayer . wellSpaced !== null ? `${ row . silvicultureLayer . wellSpaced } (st/ha)` : NOT_APPLICABLE } </ span >
265- < span > Free growing: { row . silvicultureLayer . freeGrowing !== null ? `${ row . silvicultureLayer . freeGrowing } (st/ha)` : NOT_APPLICABLE } </ span >
263+ < span > Total well spaced: { row . silvicultureLayer . totalWellSpaced !== null ? `${ row . silvicultureLayer . totalWellSpaced } (st/ha)` : PLACE_HOLDER } </ span >
264+ < span > Well spaced: { row . silvicultureLayer . wellSpaced !== null ? `${ row . silvicultureLayer . wellSpaced } (st/ha)` : PLACE_HOLDER } </ span >
265+ < span > Free growing: { row . silvicultureLayer . freeGrowing !== null ? `${ row . silvicultureLayer . freeGrowing } (st/ha)` : PLACE_HOLDER } </ span >
266266 </ div >
267267 ) ;
268268 }
0 commit comments