Skip to content

Commit 3ebde6a

Browse files
authored
Merge pull request #2971 from numbersprotocol/feature-v230725-showing-order-information-in-the-transaction
fix: iframe copy order id to clipboard
2 parents b52b29d + 285f464 commit 3ebde6a

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
@@ -117,10 +117,10 @@ export class NetworkActionOrderDetailsPage {
117117
}
118118

119119
private copyToClipboardOrderId() {
120-
this.order$
120+
this.orderId$
121121
.pipe(
122122
first(),
123-
concatMap(({ order_id_text }) => this.copyToClipboard(order_id_text))
123+
concatMap(orderId => this.copyToClipboard(orderId))
124124
)
125125
.subscribe();
126126
}

0 commit comments

Comments
 (0)