File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
apps/remix-ide/src/app/tabs/locales/en
libs/remix-ui/run-tab/src/lib/components Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 109109
110110 "udapp._comment_universalDappUI.tsx" : " libs/remix-ui/run-tab/src/lib/components/universalDappUI.tsx" ,
111111 "udapp.tooltipTextRemove" : " Remove from the list" ,
112+ "udapp.tooltipTextEdit" : " Create Dapp with QuickDapp in the main panel" ,
112113 "udapp.tooltipTextPin" : " Pin contract" ,
113114 "udapp.tooltipText8" : " Click for docs about using 'receive'/'fallback'" ,
114115 "udapp.tooltipText9" : " The Calldata to send to fallback function of the contract." ,
Original file line number Diff line number Diff line change @@ -297,7 +297,16 @@ export function UniversalDappUI(props: UdappProps) {
297297 < label >
298298 < b > < FormattedMessage id = "udapp.balance" /> :</ b > { instanceBalance } ETH
299299 </ label >
300- { props . exEnvironment && props . exEnvironment . startsWith ( 'injected' ) && < i className = "fas fa-edit btn btn-sm p-0" onClick = { ( ) => { props . editInstance ( props . instance ) } } > </ i > }
300+ { props . exEnvironment && props . exEnvironment . startsWith ( 'injected' ) && (
301+ < CustomTooltip placement = "top" tooltipClasses = "text-nowrap" tooltipId = "udapp_udappEditTooltip" tooltipText = { < FormattedMessage id = "udapp.tooltipTextEdit" /> } >
302+ < i
303+ className = "fas fa-edit btn btn-sm p-0"
304+ onClick = { ( ) => {
305+ props . editInstance ( props . instance )
306+ } }
307+ > </ i >
308+ </ CustomTooltip >
309+ ) }
301310 </ div >
302311 { props . isPinnedContract && props . instance . pinnedAt ? (
303312 < div className = "d-flex" data-id = "instanceContractPinnedAt" >
You can’t perform that action at this time.
0 commit comments