@stellar-expert/ui-framework 1.15.1 → 1.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,7 +10,6 @@ import {AssetLink} from '../asset/asset-link'
|
|
|
10
10
|
import {Amount} from '../asset/amount'
|
|
11
11
|
import {CopyToClipboard} from '../interaction/copy-to-clipboard'
|
|
12
12
|
import {ScVal} from '../contract/sc-val'
|
|
13
|
-
import {InfoTooltip} from '../controls/info-tooltip'
|
|
14
13
|
import InvocationInfoView from '../contract/invocation-info-view'
|
|
15
14
|
|
|
16
15
|
/**
|
|
@@ -221,7 +220,7 @@ export function EffectDescription({effect, operation}) {
|
|
|
221
220
|
case 'contractUpdated':
|
|
222
221
|
case 'contractRestored':
|
|
223
222
|
return <>Contract <AccountAddress account={effect.contract}/> {getEffectAction(effect, 'contract')}
|
|
224
|
-
<ContractDetails effect={effect}/><ConstructorDetails/></>
|
|
223
|
+
<ContractDetails effect={effect}/><ConstructorDetails effect={effect}/></>
|
|
225
224
|
case 'contractInvoked':
|
|
226
225
|
return <>{effect.depth > 0 &&
|
|
227
226
|
<i className="icon-level-down text-tiny color-primary" style={{paddingLeft: (effect.depth - 1) + 'em'}}/>}
|
|
@@ -328,7 +327,7 @@ function ContractCodeWasm({wasm}) {
|
|
|
328
327
|
</>
|
|
329
328
|
}
|
|
330
329
|
|
|
331
|
-
function ClaimableBalance(effect) {
|
|
330
|
+
function ClaimableBalance({effect}) {
|
|
332
331
|
const {balance} = effect
|
|
333
332
|
return <>
|
|
334
333
|
{shortenString(balance)} <CopyToClipboard text={balance}/>{/*<InfoTooltip icon="icon-plus">
|