@dhis2/analytics 23.7.4 → 23.7.5

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,10 @@
1
+ ## [23.7.5](https://github.com/dhis2/analytics/compare/v23.7.4...v23.7.5) (2022-04-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * filter on displayName to get objects in current language DHIS2-13015 ([#1199](https://github.com/dhis2/analytics/issues/1199)) ([00c9d77](https://github.com/dhis2/analytics/commit/00c9d77793e6c92b84c0859873b599153b2a17cc))
7
+
1
8
  ## [23.7.4](https://github.com/dhis2/analytics/compare/v23.7.3...v23.7.4) (2022-04-06)
2
9
 
3
10
 
@@ -128,7 +128,7 @@ const OpenFileDialog = ({
128
128
  }
129
129
 
130
130
  if (filters.searchTerm) {
131
- queryFilters.push("name:ilike:".concat(filters.searchTerm));
131
+ queryFilters.push("displayName:ilike:".concat(filters.searchTerm));
132
132
  }
133
133
 
134
134
  return queryFilters;
@@ -101,7 +101,7 @@ export const OpenFileDialog = ({
101
101
  }
102
102
 
103
103
  if (filters.searchTerm) {
104
- queryFilters.push("name:ilike:".concat(filters.searchTerm));
104
+ queryFilters.push("displayName:ilike:".concat(filters.searchTerm));
105
105
  }
106
106
 
107
107
  return queryFilters;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhis2/analytics",
3
- "version": "23.7.4",
3
+ "version": "23.7.5",
4
4
  "main": "./build/cjs/index.js",
5
5
  "module": "./build/es/index.js",
6
6
  "exports": {
@@ -58,7 +58,6 @@
58
58
  "styled-jsx": "^3.3.2"
59
59
  },
60
60
  "dependencies": {
61
- "@dhis2/d2-ui-translation-dialog": "^7.3.3",
62
61
  "classnames": "^2.3.1",
63
62
  "d2-utilizr": "^0.2.16",
64
63
  "d3-color": "^1.2.3",