@lowcodeunit/applications-flow-common 1.33.305-lets-get-social-ish → 1.33.306-lets-get-social-ish
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/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +4 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +3 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +3 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3540,7 +3540,9 @@ class GitAuthComponent {
|
|
|
3540
3540
|
*/
|
|
3541
3541
|
ConnectGitHubProvider() {
|
|
3542
3542
|
const reidrectUri = location.pathname + location.search;
|
|
3543
|
-
window.location.href = `/.oauth/GitHubOAuth?redirectUri=${reidrectUri}`;
|
|
3543
|
+
// window.location.href = `/.oauth/GitHubOAuth?redirectUri=${reidrectUri}`;
|
|
3544
|
+
// added below line for the new social ui redirectUri wasn't working
|
|
3545
|
+
window.location.href = '/.oauth/GitHubOAuth?redirectUri=%2Fdashboard';
|
|
3544
3546
|
this.ConnectClicked = true;
|
|
3545
3547
|
}
|
|
3546
3548
|
}
|