File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
src/app/pages/ConsensusTransactionDetailPage Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import { getFiatCurrencyForScope } from '../../../config'
2626import { useWantedTransaction } from '../../hooks/useWantedTransaction'
2727import { MultipleTransactionsWarning } from '../../components/Transactions/MultipleTransactionsWarning'
2828import { DashboardLink } from '../ParatimeDashboardPage/DashboardLink'
29+ import Box from '@mui/material/Box'
2930
3031const StyledDescriptionDetails = styled ( 'dd' ) ( {
3132 '&&' : { padding : 0 } ,
@@ -120,15 +121,27 @@ export const ConsensusTransactionDetailView: FC<{
120121 </ dd >
121122 < dt > { t ( 'common.from' ) } </ dt >
122123 < dd >
123- < ConsensusAccountLink network = { transaction . network } address = { transaction . sender } alwaysTrim = { false } />
124- < CopyToClipboard value = { transaction . sender } />
124+ < Box sx = { { display : 'inline-flex' , alignItems : 'center' } } >
125+ < ConsensusAccountLink
126+ network = { transaction . network }
127+ address = { transaction . sender }
128+ alwaysTrim = { false }
129+ />
130+ < CopyToClipboard value = { transaction . sender } />
131+ </ Box >
125132 </ dd >
126133 { transaction . to && (
127134 < >
128135 < dt > { t ( 'common.to' ) } </ dt >
129136 < dd >
130- < ConsensusAccountLink network = { transaction . network } address = { transaction . to } alwaysTrim = { false } />
131- < CopyToClipboard value = { transaction . to } />
137+ < Box sx = { { display : 'inline-flex' , alignItems : 'center' } } >
138+ < ConsensusAccountLink
139+ network = { transaction . network }
140+ address = { transaction . to }
141+ alwaysTrim = { false }
142+ />
143+ < CopyToClipboard value = { transaction . to } />
144+ </ Box >
132145 </ dd >
133146 </ >
134147 ) }
You can’t perform that action at this time.
0 commit comments