OSDN Git Service

fixed the enter popup bug.
authorZhiting Lin <zlin035@uottawa.ca>
Tue, 13 Nov 2018 06:18:54 +0000 (14:18 +0800)
committerZhiting Lin <zlin035@uottawa.ca>
Tue, 13 Nov 2018 06:18:54 +0000 (14:18 +0800)
src/features/transactions/components/New/MultiSignTransactionDetails/TransactionDetails.jsx

index 757b335..e631825 100644 (file)
@@ -53,10 +53,10 @@ class TransactionDetails extends React.Component {
 
         {touched && error && <span className='text-danger'><strong>{error}</strong></span>}
         {this.props.hint && <span className='help-block'>{this.props.hint}</span>}
-          <button className={`btn btn-link ${styles.btn}`}
+          <a className={`btn btn-link ${styles.btn}`}
                   onClick={(e) => this.showDetailTransactions(e, fieldProps.value)}>
             {t('transaction.advance.showDetails')}
-          </button>
+          </a>
       </div>
     )
   }