diff --git a/src/App.js b/src/App.js index 90568c33..464ff49a 100644 --- a/src/App.js +++ b/src/App.js @@ -95,7 +95,7 @@ class Root extends React.Component { <> - { this.props.apiLoadError ? + { this.props.apiLoadError ?

Error loading the explorer. Please reload the page to try again.

diff --git a/src/components/tx/TxData.js b/src/components/tx/TxData.js index 96222798..211a37d6 100644 --- a/src/components/tx/TxData.js +++ b/src/components/tx/TxData.js @@ -716,14 +716,14 @@ class TxData extends React.Component { {this.props.showConflicts ? renderConflicts() : ''}
{this.props.transaction.hash}
- {this.props.transaction.signer &&
{this.props.transaction.signer.toUpperCase()}
}
{hathorLib.transactionUtils.getTxType(this.props.transaction)} {isNFTCreation() && '(NFT)'}
{dateFormatter.parseTimestamp(this.props.transaction.timestamp)}
{this.props.transaction.nonce}
{helpers.roundFloat(this.props.transaction.weight)}
- {this.props.transaction.signer_id &&
0x{this.props.transaction.signer_id.toUpperCase()}
} + {this.props.transaction.signer_id &&
{this.props.transaction.signer_id.toLowerCase()}
} + {this.props.transaction.signer &&
{helpers.getShortHash(this.props.transaction.signer.toLowerCase())}
} {!hathorLib.transactionUtils.isBlock(this.props.transaction) && renderFirstBlockDiv()}