@social-mail/social-mail-client 1.9.46 → 1.9.47
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/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.d.ts +1 -0
- package/dist/web/AppIndex.d.ts.map +1 -1
- package/dist/web/AppIndex.js +4 -1
- package/dist/web/AppIndex.js.map +1 -1
- package/dist/web/AppIndex.pack.js +4 -1
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/package.json +1 -1
- package/src/web/AppIndex.tsx +4 -1
package/package.json
CHANGED
package/src/web/AppIndex.tsx
CHANGED
|
@@ -33,6 +33,9 @@ export default class AppIndex extends MobileDesktopApp {
|
|
|
33
33
|
@InjectProperty
|
|
34
34
|
private userService: LoginService;
|
|
35
35
|
|
|
36
|
+
@InjectProperty
|
|
37
|
+
private menuService: MenuService;
|
|
38
|
+
|
|
36
39
|
constructor(app, e) {
|
|
37
40
|
super(app, e);
|
|
38
41
|
BusyProgress.install(this.app);
|
|
@@ -64,7 +67,7 @@ export default class AppIndex extends MobileDesktopApp {
|
|
|
64
67
|
await PageNavigator.pushPageForResultOrCancel(SetupMultiFactorPage);
|
|
65
68
|
}
|
|
66
69
|
|
|
67
|
-
const menuService = this
|
|
70
|
+
const { menuService } = this;
|
|
68
71
|
|
|
69
72
|
if(!Command.invokeRoute()) {
|
|
70
73
|
|