Skip to content

Commit 1b8eb37

Browse files
show more address search fields (#415)
1 parent 7ff8ee2 commit 1b8eb37

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
## [32.6.1] - 2026-04-28
3+
- Show more fields in address search results
24
## [32.6.0] - 2026-04-27
35
- Add optional editStatus parameter to SaveBackCancelButtons. Set it to edit or create as appropriate to allow cancel while save is disabled.
46
## [32.5.2] - 2026-04-22

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@linn-it/linn-form-components-library",
3-
"version": "32.6.0",
3+
"version": "32.6.1",
44
"private": false,
55
"repository": {
66
"type": "git",

src/components/AddressUtility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function AddressUtility({
4444
};
4545

4646
const chips = a => {
47-
const result = [{ text: a.addressId }];
47+
const result = [{ text: a.addressId }, { text: a.addressee }, { text: a.line1 }];
4848
if (a.postCode) {
4949
result.push({ text: a.postCode });
5050
}

0 commit comments

Comments
 (0)