Skip to content

Commit 6cab419

Browse files
authored
Merge pull request #2336 from numbersprotocol/fix-network-action-result-url-should-display-asset-profile
fix(network-action-order-details.page): result url redirects to asset…
2 parents 9f72049 + 3185ab6 commit 6cab419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/features/home/activities/network-action-order-details/network-action-order-details.page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { catchError, first, map } from 'rxjs/operators';
99
import { OrderHistoryService } from '../../../../shared/actions/service/order-history.service';
1010
import { ErrorService } from '../../../../shared/error/error.service';
1111
import { isNonNullable } from '../../../../utils/rx-operators/rx-operators';
12-
import { getAssetProfileForCaptureIframe } from '../../../../utils/url';
12+
import { getAssetProfileForNSE } from '../../../../utils/url';
1313

1414
const { Browser, Clipboard } = Plugins;
1515
@UntilDestroy({ checkProperties: true })
@@ -49,7 +49,7 @@ export class NetworkActionOrderDetailsPage {
4949

5050
// eslint-disable-next-line class-methods-use-this
5151
resultUrlFromAssetId(assetId: string) {
52-
return getAssetProfileForCaptureIframe(assetId);
52+
return getAssetProfileForNSE(assetId);
5353
}
5454

5555
async copyToClipboard(value: string) {

0 commit comments

Comments
 (0)