Barış Can Yılmaz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
3 deletions
-
npm/ng-packs/packages/components/package.json
-
npm/ng-packs/packages/oauth/src/lib/strategies/auth-code-flow-strategy.ts
|
|
|
@ -8,8 +8,7 @@ |
|
|
|
}, |
|
|
|
"peerDependencies": { |
|
|
|
"@abp/ng.core": ">=7.0.3", |
|
|
|
"@abp/ng.theme.shared": ">=7.0.3", |
|
|
|
"@ng-bootstrap/ng-bootstrap": ">=10.0.0" |
|
|
|
"@abp/ng.theme.shared": ">=7.0.3" |
|
|
|
}, |
|
|
|
"dependencies": { |
|
|
|
"chart.js": "^3.5.1", |
|
|
|
|
|
|
|
@ -15,7 +15,7 @@ export class AuthCodeFlowStrategy extends AuthFlowStrategy { |
|
|
|
|
|
|
|
navigateToLogin(queryParams?: Params) { |
|
|
|
let additionalState = ''; |
|
|
|
if (!!queryParams?.returnUrl) { |
|
|
|
if (queryParams?.returnUrl) { |
|
|
|
additionalState = queryParams.returnUrl; |
|
|
|
} |
|
|
|
|
|
|
|
|