@openmrs/esm-home-app 5.2.4-pre.405 → 5.2.4-pre.407

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.
@@ -31,4 +31,4 @@ This can impact web performance.
31
31
  Assets:
32
32
  130.js (619 KiB)
33
33
 
34
- webpack 5.88.2 compiled with 1 warning in 12068 ms
34
+ webpack 5.88.2 compiled with 1 warning in 12203 ms
@@ -130,7 +130,7 @@
130
130
  "auxiliaryFiles": [
131
131
  "main.js.map"
132
132
  ],
133
- "hash": "b5f036074f88d706",
133
+ "hash": "190731d556c0b217",
134
134
  "childrenByOrder": {}
135
135
  },
136
136
  {
@@ -285,7 +285,7 @@
285
285
  "auxiliaryFiles": [
286
286
  "656.js.map"
287
287
  ],
288
- "hash": "b14a9029a46b76e2",
288
+ "hash": "088ed9b74d02d24c",
289
289
  "childrenByOrder": {}
290
290
  },
291
291
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-home-app",
3
- "version": "5.2.4-pre.405",
3
+ "version": "5.2.4-pre.407",
4
4
  "description": "Homepage microfrontend for the OpenMRS SPA",
5
5
  "browser": "dist/openmrs-esm-home-app.js",
6
6
  "main": "src/index.ts",
@@ -3,7 +3,7 @@ import { ExtensionSlot } from '@openmrs/esm-framework';
3
3
  import styles from './dashboard-view.scss';
4
4
 
5
5
  const DashboardView: React.FC<{ dashboardSlot: string; title: string }> = ({ dashboardSlot, title }) => {
6
- return <ExtensionSlot className={styles.dashboardView} name={dashboardSlot} state={{ dashboardTitle: title }} />
6
+ return <ExtensionSlot className={styles.dashboardView} name={dashboardSlot} state={{ dashboardTitle: title }} />;
7
7
  };
8
8
 
9
9
  export default DashboardView;