@openmrs/esm-home-app 4.0.2-pre.172 → 4.0.2-pre.182

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.
@@ -27,4 +27,4 @@ This can impact web performance.
27
27
  Assets:
28
28
  858.js (397 KiB)
29
29
 
30
- webpack 5.75.0 compiled with 1 warning in 13193 ms
30
+ webpack 5.75.0 compiled with 1 warning in 15701 ms
package/dist/81.js CHANGED
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_openmrs_esm_home_app=self.webpackChunk_openmrs_esm_home_app||[]).push([[81],{81:(e,n,s)=>{s.r(n),s.d(n,{default:()=>i});var t=s(268),a=s.n(t),r=s(906),m=s(924);function i(){var e=(0,m.useTranslation)().t;return a().createElement(r.ConfigurableLink,{to:"${openmrsBase}/admin"},e("systemAdministration","System Administration"))}}}]);
1
+ "use strict";(self.webpackChunk_openmrs_esm_home_app=self.webpackChunk_openmrs_esm_home_app||[]).push([[81],{81:(e,n,s)=>{s.r(n),s.d(n,{default:()=>i});var t=s(268),a=s.n(t),m=s(906),r=s(924);function i(){var e=(0,r.useTranslation)().t;return a().createElement(m.ConfigurableLink,{to:"${openmrsBase}/admin/index.htm"},e("systemAdministration","System Administration"))}}}]);
@@ -5,9 +5,9 @@
5
5
  "initial": false,
6
6
  "entry": false,
7
7
  "recorded": false,
8
- "size": 378,
8
+ "size": 388,
9
9
  "sizes": {
10
- "javascript": 378
10
+ "javascript": 388
11
11
  },
12
12
  "names": [],
13
13
  "idHints": [],
@@ -19,7 +19,7 @@
19
19
  "81.js"
20
20
  ],
21
21
  "auxiliaryFiles": [],
22
- "hash": "71c24c561b44d2193d3b",
22
+ "hash": "4a9cab147b7aa7449839",
23
23
  "childrenByOrder": {}
24
24
  },
25
25
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-home-app",
3
- "version": "4.0.2-pre.172",
3
+ "version": "4.0.2-pre.182",
4
4
  "description": "Homepage microfrontend for the OpenMRS SPA",
5
5
  "browser": "dist/openmrs-esm-home-app.js",
6
6
  "main": "src/index.ts",
@@ -45,5 +45,5 @@
45
45
  "react-i18next": "11.x",
46
46
  "react-router-dom": "6.x"
47
47
  },
48
- "gitHead": "a07032139c6f45662f01d64f9f674229632649ad"
48
+ "gitHead": "12bc9d344a85044b342d178c855f433f4bbaa708"
49
49
  }
@@ -6,6 +6,8 @@ export default function SystemAdministration() {
6
6
  const { t } = useTranslation();
7
7
 
8
8
  return (
9
- <ConfigurableLink to="${openmrsBase}/admin">{t('systemAdministration', 'System Administration')}</ConfigurableLink>
9
+ <ConfigurableLink to="${openmrsBase}/admin/index.htm">
10
+ {t('systemAdministration', 'System Administration')}
11
+ </ConfigurableLink>
10
12
  );
11
13
  }