@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/.turbo/turbo-build.log +4 -4
- package/dist/775.js +1 -1
- package/dist/775.js.map +1 -1
- package/dist/889.js +1 -1
- package/dist/889.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/openmrs-esm-implementer-tools-app.js +1 -1
- package/dist/openmrs-esm-implementer-tools-app.js.buildmanifest.json +8 -8
- package/dist/routes.json +1 -1
- package/package.json +3 -3
- package/src/configuration/configuration.component.tsx +1 -0
- package/src/configuration/interactive-editor/description.component.tsx +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-implementer-tools-app",
|
|
3
|
-
"version": "5.7.3-pre.
|
|
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.
|
|
55
|
-
"@openmrs/webpack-config": "5.7.3-pre.
|
|
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) =>
|
|
30
|
-
|
|
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}
|