Skip to content

Commit 7243ccb

Browse files
authored
docs: update changelog (#11553)
1 parent dbaa155 commit 7243ccb

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,40 @@ A file field that allows uploading an image with maximum size of 600x600 pixels:
2424
Uploaded image files can now be rendered in certificate svg templates using the `$lookup` Handlebars helper. Below is an example of rendering the uploaded applicant image added in declaration form through a `FILE` field in a certificate template:
2525

2626
```hbs
27-
<image x="50" y="100" height="50" width="50" xlink:href="{{ $lookup $declaration "applicant.image" }}" />
27+
<image
28+
x='50'
29+
y='100'
30+
height='50'
31+
width='50'
32+
xlink:href='{{$lookup $declaration "applicant.image"}}'
33+
/>
2834
```
2935

3036
Also for `FILE_WITH_OPTIONS` fields, the selected option can be accessed using the following syntax, you just need to provide the option value as the last part of the path:
3137

3238
```hbs
33-
<image x="50" y="100" height="50" width="100" xlink:href="{{ $lookup $declaration "applicant.idImage.ID_FRONT" }}" />
39+
<image
40+
x='50'
41+
y='100'
42+
height='50'
43+
width='100'
44+
xlink:href='{{$lookup $declaration "applicant.idImage.ID_FRONT"}}'
45+
/>
3446
```
3547

3648
Annotation data from actions can also be accessed in a similar way using the `$action` or `$actions` helpers. For example, to access an uploaded image in the `PRINT_CERTIFICATE` action annotation data:
3749

3850
```hbs
39-
<image x="50" y="100" height="50" width="100" xlink:href="{{ $lookup ($action "PRINT_CERTIFICATE") "annotation.collector.OTHER.signedAffidavit" }}" />
51+
<image
52+
x='50'
53+
y='100'
54+
height='50'
55+
width='100'
56+
xlink:href='{{$lookup
57+
($action "PRINT_CERTIFICATE")
58+
"annotation.collector.OTHER.signedAffidavit"
59+
}}'
60+
/>
4061
```
4162

4263
- Add registration number field to advanced search configuration so that documents can be searched by their `Registration Number`. [#10760](https://github.com/opencrvs/opencrvs-core/issues/10760)
@@ -45,6 +66,8 @@ Annotation data from actions can also be accessed in a similar way using the `$a
4566

4667
- Fix quick search failing when configured with a large number of events and many searchable fields [#11397](https://github.com/opencrvs/opencrvs-core/issues/11397)
4768

69+
- In quick search, when searching with a valid email address, the search is performed only against email fields [[#11199](https://github.com/opencrvs/opencrvs-core/issues/11199)]
70+
4871
### Improvements
4972

5073
#### User default values in form fields

0 commit comments

Comments
 (0)