@indigina/kendo 1.0.149-beta → 1.0.152-beta
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/bundles/indigina-kendo.umd.js +4 -2
- package/bundles/indigina-kendo.umd.js.map +1 -1
- package/bundles/indigina-kendo.umd.min.js +1 -1
- package/bundles/indigina-kendo.umd.min.js.map +1 -1
- package/esm2015/lib/components/azure-login-callback/azure-login-callback.component.js +5 -3
- package/fesm2015/indigina-kendo.js +4 -2
- package/fesm2015/indigina-kendo.js.map +1 -1
- package/package.json +1 -1
|
@@ -2042,8 +2042,10 @@
|
|
|
2042
2042
|
this.authService
|
|
2043
2043
|
.handleRedirectObservable()
|
|
2044
2044
|
.subscribe(function (result) {
|
|
2045
|
-
|
|
2046
|
-
|
|
2045
|
+
if (result) {
|
|
2046
|
+
_this.settingsService.setToken(result.idToken);
|
|
2047
|
+
_this.authService.instance.setActiveAccount(result.account);
|
|
2048
|
+
}
|
|
2047
2049
|
_this.router.navigate(['home']);
|
|
2048
2050
|
});
|
|
2049
2051
|
};
|