@dhis2/analytics 23.12.5 → 23.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [23.13.0](https://github.com/dhis2/analytics/compare/v23.12.5...v23.13.0) (2022-07-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* search by tokens across identifiable properties (DHIS2-13475) ([c94c427](https://github.com/dhis2/analytics/commit/c94c4271492d390cd76cfb8c8d8104cbfab83e1d))
|
|
7
|
+
* search by tokens across identifiable properties [DHIS2-13475] ([87db2f9](https://github.com/dhis2/analytics/commit/87db2f91f7aa5b2665038324d5b779e2f8267812))
|
|
8
|
+
|
|
1
9
|
## [23.12.5](https://github.com/dhis2/analytics/compare/v23.12.4...v23.12.5) (2022-06-24)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -130,7 +130,7 @@ const OpenFileDialog = _ref2 => {
|
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
if (filters.searchTerm) {
|
|
133
|
-
queryFilters.push("
|
|
133
|
+
queryFilters.push("identifiable:token:".concat(filters.searchTerm));
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
return queryFilters;
|
|
@@ -103,7 +103,7 @@ export const OpenFileDialog = _ref2 => {
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
if (filters.searchTerm) {
|
|
106
|
-
queryFilters.push("
|
|
106
|
+
queryFilters.push("identifiable:token:".concat(filters.searchTerm));
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
return queryFilters;
|