File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) ) }
You can’t perform that action at this time.
0 commit comments