aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-dropdown-list
diff options
context:
space:
mode:
authortrejgun <trejgun@gmail.com>2018-07-02 10:09:28 +0800
committerTrejGun <trejgun@gmail.com>2018-07-05 11:33:34 +0800
commitc94f639de55a867ebe8d3599d337a1f7341b1979 (patch)
treee6f4f6858d9d28f90e07249295976a598aff23b0 /ui/app/components/send_/send-content/send-dropdown-list
parentb2e64f24ecbc9e309869e678254cf755ffe11b40 (diff)
downloadtangerine-wallet-browser-c94f639de55a867ebe8d3599d337a1f7341b1979.tar.gz
tangerine-wallet-browser-c94f639de55a867ebe8d3599d337a1f7341b1979.tar.zst
tangerine-wallet-browser-c94f639de55a867ebe8d3599d337a1f7341b1979.zip
convert contextType to static prop for refactored components
Diffstat (limited to 'ui/app/components/send_/send-content/send-dropdown-list')
-rw-r--r--ui/app/components/send_/send-content/send-dropdown-list/send-dropdown-list.component.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/send_/send-content/send-dropdown-list/send-dropdown-list.component.js b/ui/app/components/send_/send-content/send-dropdown-list/send-dropdown-list.component.js
index 5c7174ecf..bedac1259 100644
--- a/ui/app/components/send_/send-content/send-dropdown-list/send-dropdown-list.component.js
+++ b/ui/app/components/send_/send-content/send-dropdown-list/send-dropdown-list.component.js
@@ -11,6 +11,10 @@ export default class SendDropdownList extends Component {
activeAddress: PropTypes.string,
};
+ static contextTypes = {
+ t: PropTypes.func,
+ };
+
getListItemIcon (accountAddress, activeAddress) {
return accountAddress === activeAddress
? <i className={`fa fa-check fa-lg`} style={ { color: '#02c9b1' } }/>
@@ -46,7 +50,3 @@ export default class SendDropdownList extends Component {
}
}
-
-SendDropdownList.contextTypes = {
- t: PropTypes.func,
-}