summaryrefslogtreecommitdiff
path: root/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-10 23:55:02 -0300
committerSebastian <sebasjm@gmail.com>2021-06-10 23:55:04 -0300
commitfee8423fbad552a4e7609cd4f6bc48585054576a (patch)
treee76e546642e7b2864da408ea0710ecafc01728d6 /packages/frontend/src/paths/instance/orders/details/DetailPage.tsx
parentc9c04a14be4bf9a70cd1730d2e8b5aa8bd38f032 (diff)
downloadmerchant-backoffice-fee8423fbad552a4e7609cd4f6bc48585054576a.tar.gz
merchant-backoffice-fee8423fbad552a4e7609cd4f6bc48585054576a.tar.bz2
merchant-backoffice-fee8423fbad552a4e7609cd4f6bc48585054576a.zip
fix lint
Diffstat (limited to 'packages/frontend/src/paths/instance/orders/details/DetailPage.tsx')
-rw-r--r--packages/frontend/src/paths/instance/orders/details/DetailPage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx b/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx
index 9f148b6..bfc7c7f 100644
--- a/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx
+++ b/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx
@@ -346,7 +346,7 @@ function PaidPage({ id, order, onRefund }: { id: string; order: MerchantBackend.
{order.refunded && <InputCurrency<Paid> name="refund_amount" readonly label={i18n`Refunded amount`} />}
<Input<Paid> name="order_status" readonly label={i18n`Order status`} />
<TextField<Paid> name="order_status_url" label={i18n`Status URL`} >
- <a target="_blank" href={order.order_status_url}>
+ <a target="_blank" rel="noreferrer" href={order.order_status_url}>
{order.order_status_url}
</a>
</TextField>