@openmrs/esm-implementer-tools-app 5.7.3-pre.2161 → 5.7.3-pre.2167

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-implementer-tools-app",
3
- "version": "5.7.3-pre.2161",
3
+ "version": "5.7.3-pre.2167",
4
4
  "license": "MPL-2.0",
5
5
  "description": "The admin interface for OpenMRS Frontend",
6
6
  "browser": "dist/openmrs-esm-implementer-tools-app.js",
@@ -51,8 +51,8 @@
51
51
  "swr": "2.x"
52
52
  },
53
53
  "devDependencies": {
54
- "@openmrs/esm-framework": "5.7.3-pre.2161",
55
- "@openmrs/webpack-config": "5.7.3-pre.2161",
54
+ "@openmrs/esm-framework": "5.7.3-pre.2167",
55
+ "@openmrs/webpack-config": "5.7.3-pre.2167",
56
56
  "ace-builds": "^1.4.14",
57
57
  "react": "^18.1.0",
58
58
  "react-ace": "^9.5.0",
@@ -133,6 +133,7 @@ export const Configuration: React.FC<ConfigurationProps> = () => {
133
133
  id="extensionSearch"
134
134
  labelText="Search configuration"
135
135
  onChange={(e) => setFilterText(e.target.value)}
136
+ autoComplete="off"
136
137
  />
137
138
  </Column>
138
139
  <Column className={styles.toggleButtons}>
@@ -26,8 +26,10 @@ export function Description() {
26
26
  {activeItemDescription.value ? <h4 className={styles.productiveHeading01}>{t('value', 'Value')}</h4> : null}
27
27
  <p className={styles.value}>
28
28
  {Array.isArray(activeItemDescription.value)
29
- ? activeItemDescription.value.map((v, i) => <p key={`${v}-${i}`}>{v}</p>)
30
- : activeItemDescription.value}
29
+ ? activeItemDescription.value.map((v, i) => (
30
+ <p key={`item-description-value-${i}`}>{JSON.stringify(v)}</p>
31
+ ))
32
+ : JSON.stringify(activeItemDescription.value)}
31
33
  </p>
32
34
  </>
33
35
  ) : null}