Browse Source

Merge pull request #811 from mrfelton/fix/hide-expired-toggle-for-empty-wallet

fix(wallet): hide expired toggle for empty wallet
renovate/lint-staged-8.x
JimmyMow 6 years ago
committed by GitHub
parent
commit
8e1db06211
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/components/Activity/Activity.js

3
app/components/Activity/Activity.js

@ -218,7 +218,8 @@ class Activity extends Component {
</ul> </ul>
</li> </li>
))} ))}
{showExpiredToggle && ( {showExpiredToggle &&
currentActivity.length > 0 && (
<li> <li>
<div className={styles.toggleExpired} onClick={toggleExpiredRequests}> <div className={styles.toggleExpired} onClick={toggleExpiredRequests}>
{showExpiredRequests ? ( {showExpiredRequests ? (

Loading…
Cancel
Save