Fix retry transaction button tooltip (#9524)

The tooltip for the Retry Transaction button would be erroneously set
to display a custom block explorer, if one was set for the current
network. It now displays the intended retry transaction text in all
cases.
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent 30d6ad83f7
commit 305e3ceb2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/components/app/transaction-list-item-details/transaction-list-item-details.component.js

@ -204,7 +204,7 @@ export default class TransactionListItemDetails extends PureComponent {
</Tooltip>
{
showRetry && (
<Tooltip title={blockExplorerUrl ? t('viewOnCustomBlockExplorer', [blockExplorerUrl]) : t('retryTransaction')}>
<Tooltip title={t('retryTransaction')}>
<Button
type="raised"
onClick={this.handleRetry}

Loading…
Cancel
Save