Skip to content

Commit f2631ab

Browse files
committed
AP-7281 # Fixed Lot / DP Numbers display for NSW Point V3 form element
1 parent 1371813 commit f2631ab

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515

1616
- github action permissions to allow docs and github release jobs
17+
- Lot / DP Numbers display for NSW Point V3 form element
1718

1819
## [9.0.1] - 2026-02-04
1920

src/form-elements/FormElementPointAddressV3.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ function FormElementPointAddressV3({
189189
value={value?.properties?.cadastralIdentifier}
190190
classNameSuffix="cadastral-identifier"
191191
/>
192-
{value?.properties?.parcelBundle?.map((parcel, index) => (
192+
{value?.properties?.propertyBundle?.map((property) => (
193193
<PointAddressGridItem
194-
key={parcel.parcelId || index}
194+
key={property.propertyPid}
195195
label="Lot / DP Numbers"
196-
value={`${parcel.lot}//${parcel.plan}`}
196+
value={property.parcelIds?.join(', ')}
197197
classNameSuffix="cadastral-parcel"
198198
/>
199199
))}

0 commit comments

Comments
 (0)