File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/app/features/home/details Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ export class DetailsPage {
184
184
readonly iframeUrl$ = this . activeDetailedCapture$ . pipe (
185
185
distinctUntilChanged ( ) ,
186
186
map ( detailedCapture => {
187
- const params = `pid =${ detailedCapture . id } &iframeLoadedFrom=CaptureApp ` ;
187
+ const params = `nid =${ detailedCapture . id } &from=mycapture ` ;
188
188
const url = `${ BUBBLE_IFRAME_URL } /?${ params } ` ;
189
189
return this . sanitizer . bypassSecurityTrustResourceUrl ( url ) ;
190
190
} )
@@ -207,7 +207,7 @@ export class DetailsPage {
207
207
distinctUntilChanged ( ) ,
208
208
map ( ( [ detailedCapture ] ) => {
209
209
const token = this . userToken ;
210
- const params = `pid =${ detailedCapture . id } &token=${ token } &iframeLoadedFrom=CaptureApp ` ;
210
+ const params = `nid =${ detailedCapture . id } &token=${ token } &from=mycapture ` ;
211
211
const url = `${ BUBBLE_IFRAME_URL } /asset_page?${ params } ` ;
212
212
return this . sanitizer . bypassSecurityTrustResourceUrl ( url ) ;
213
213
} )
@@ -253,7 +253,7 @@ export class DetailsPage {
253
253
254
254
iframeUrlFor ( detailedCapture : any ) {
255
255
return this . sanitizer . bypassSecurityTrustResourceUrl (
256
- `${ BUBBLE_IFRAME_URL } /asset_page?pid =${ detailedCapture . id } `
256
+ `${ BUBBLE_IFRAME_URL } /asset_page?nid =${ detailedCapture . id } `
257
257
) ;
258
258
}
259
259
You can’t perform that action at this time.
0 commit comments