mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
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.
This commit is contained in:
parent
30d6ad83f7
commit
305e3ceb2e
@ -204,7 +204,7 @@ export default class TransactionListItemDetails extends PureComponent {
|
|||||||
</Tooltip>
|
</Tooltip>
|
||||||
{
|
{
|
||||||
showRetry && (
|
showRetry && (
|
||||||
<Tooltip title={blockExplorerUrl ? t('viewOnCustomBlockExplorer', [blockExplorerUrl]) : t('retryTransaction')}>
|
<Tooltip title={t('retryTransaction')}>
|
||||||
<Button
|
<Button
|
||||||
type="raised"
|
type="raised"
|
||||||
onClick={this.handleRetry}
|
onClick={this.handleRetry}
|
||||||
|
Loading…
Reference in New Issue
Block a user