Skip to content

Commit accd7b0

Browse files
Michael BreuMichael Breu
authored andcommitted
minor fix
1 parent 3dd4d19 commit accd7b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/webapp/app/sharing/sharing.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export class SharingComponent implements OnInit {
160160
* Initialises the sharing page for import
161161
*/
162162
ngOnInit(): void {
163-
combineLatest([this.route.params.pipe(take(1)), this.route.queryParams.pipe(take(1))]).subscribe(([params, qparams]: [Params, Params]) => {
163+
combineLatest(this.route.params.pipe(take(1)), this.route.queryParams.pipe(take(1))).subscribe(([params, qparams]: [Params, Params]) => {
164164
this.sharingInfo.basketToken = params['basketToken'];
165165
this.sharingInfo.returnURL = qparams['returnURL'];
166166
this.sharingInfo.apiBaseURL = qparams['apiBaseURL'];

0 commit comments

Comments
 (0)