From af8172d3b2d97e3c7c1150a8237344e5182a310d Mon Sep 17 00:00:00 2001 From: Anxo Rodriguez Date: Wed, 10 Jul 2024 15:32:07 +0100 Subject: [PATCH 1/2] fix: fix broken links in gnosis chain (#4706) --- .../components/orders/DetailsTable/index.tsx | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/apps/explorer/src/components/orders/DetailsTable/index.tsx b/apps/explorer/src/components/orders/DetailsTable/index.tsx index 268a1c8c6d..1498001435 100644 --- a/apps/explorer/src/components/orders/DetailsTable/index.tsx +++ b/apps/explorer/src/components/orders/DetailsTable/index.tsx @@ -29,6 +29,7 @@ import { Order } from 'api/operator' import { getUiOrderType } from 'utils/getUiOrderType' import { TAB_QUERY_PARAM_KEY } from '../../../explorer/const' +import { Link } from 'react-router-dom' const Table = styled(SimpleTable)` > tbody > tr { @@ -36,8 +37,6 @@ const Table = styled(SimpleTable)` grid-template-rows: max-content; padding: 1.4rem 0 1.4rem 1.1rem; - - ${media.mediumDown} { grid-template-columns: 17rem auto; padding: 1.4rem 0; @@ -239,12 +238,15 @@ export function DetailsTable(props: DetailsTableProps): React.ReactNode | null { From - onCopy('ownerAddress')} - contentsToDisplay={{owner}↗} + contentsToDisplay={ + + {owner}↗ + + } /> @@ -262,14 +264,17 @@ export function DetailsTable(props: DetailsTableProps): React.ReactNode | null { onCopy('receiverAddress')} - contentsToDisplay={{receiver}↗} + contentsToDisplay={ + + {receiver}↗ + + } /> Order History - {(!partiallyFillable || txHash) && ( @@ -285,7 +290,11 @@ export function DetailsTable(props: DetailsTableProps): React.ReactNode | null { onCopy('settlementTx')} - contentsToDisplay={{txHash}↗} + contentsToDisplay={ + + {txHash}↗ + + } /> From a1a31a6558dd5c5d7965ee38d343a7d2bfbfa321 Mon Sep 17 00:00:00 2001 From: Alexandr Kazachenko Date: Wed, 10 Jul 2024 19:37:03 +0500 Subject: [PATCH 2/2] chore: release main (#4707) --- .release-please-manifest.json | 2 +- apps/explorer/CHANGELOG.md | 7 +++++++ apps/explorer/package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 55f17e6320..39b0a4a6a6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "apps/cowswap-frontend": "1.76.2", - "apps/explorer": "2.32.1", + "apps/explorer": "2.32.2", "libs/permit-utils": "0.3.0", "libs/widget-lib": "0.13.2", "libs/widget-react": "0.9.0", diff --git a/apps/explorer/CHANGELOG.md b/apps/explorer/CHANGELOG.md index 5fddf7702a..0e7cac3f3d 100644 --- a/apps/explorer/CHANGELOG.md +++ b/apps/explorer/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.32.2](https://github.com/cowprotocol/cowswap/compare/explorer-v2.32.1...explorer-v2.32.2) (2024-07-10) + + +### Bug Fixes + +* fix broken links in gnosis chain ([#4706](https://github.com/cowprotocol/cowswap/issues/4706)) ([af8172d](https://github.com/cowprotocol/cowswap/commit/af8172d3b2d97e3c7c1150a8237344e5182a310d)) + ## [2.32.1](https://github.com/cowprotocol/cowswap/compare/explorer-v2.32.0...explorer-v2.32.1) (2024-07-05) diff --git a/apps/explorer/package.json b/apps/explorer/package.json index cfaa67ccd2..59cd01bb1a 100644 --- a/apps/explorer/package.json +++ b/apps/explorer/package.json @@ -1,6 +1,6 @@ { "name": "@cowprotocol/explorer", - "version": "2.32.1", + "version": "2.32.2", "description": "CoW Swap Explorer", "main": "src/main.tsx", "author": "",