From 2ddc1ba0e52b428ac242d1a96f939d8c8a42081e Mon Sep 17 00:00:00 2001 From: James Calfee <james@jcalfee.info> Date: Thu, 13 Oct 2016 17:33:10 -0400 Subject: [PATCH] Power up should not show memo. close #474 (#475) --- app/components/modules/Transfer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/modules/Transfer.jsx b/app/components/modules/Transfer.jsx index 3299d0dc7..fc8a8ee33 100644 --- a/app/components/modules/Transfer.jsx +++ b/app/components/modules/Transfer.jsx @@ -63,7 +63,7 @@ class TransferForm extends Component { } const {toVesting} = props const fields = toVesting ? ['to', 'amount'] : ['to', 'amount', 'asset'] - if(transferType !== 'Transfer to Savings' && transferType !== 'Savings Withdraw') + if(!toVesting && transferType !== 'Transfer to Savings' && transferType !== 'Savings Withdraw') fields.push('memo') reactForm({ -- GitLab