Skip to content

Commit

Permalink
Merge pull request #2336 from numbersprotocol/fix-network-action-resu…
Browse files Browse the repository at this point in the history
…lt-url-should-display-asset-profile

fix(network-action-order-details.page): result url redirects to asset…
  • Loading branch information
bafu authored Nov 27, 2022
2 parents 9f72049 + 3185ab6 commit 6cab419
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { catchError, first, map } from 'rxjs/operators';
import { OrderHistoryService } from '../../../../shared/actions/service/order-history.service';
import { ErrorService } from '../../../../shared/error/error.service';
import { isNonNullable } from '../../../../utils/rx-operators/rx-operators';
import { getAssetProfileForCaptureIframe } from '../../../../utils/url';
import { getAssetProfileForNSE } from '../../../../utils/url';

const { Browser, Clipboard } = Plugins;
@UntilDestroy({ checkProperties: true })
Expand Down Expand Up @@ -49,7 +49,7 @@ export class NetworkActionOrderDetailsPage {

// eslint-disable-next-line class-methods-use-this
resultUrlFromAssetId(assetId: string) {
return getAssetProfileForCaptureIframe(assetId);
return getAssetProfileForNSE(assetId);
}

async copyToClipboard(value: string) {
Expand Down

0 comments on commit 6cab419

Please sign in to comment.