aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2019-01-31 01:23:25 +0800
committerGitHub <noreply@github.com>2019-01-31 01:23:25 +0800
commite29f130285fd688970d05549249f6e231c23541a (patch)
tree2fe4194dad455528b5b6cbf367a02ba2db4026fb
parentf9d4afd713a3bca75798df1f0b4ff8470f6bbc05 (diff)
parente272f8e1d9b82e6cc24f5cddb3e852ed463923ab (diff)
downloaddexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar.gz
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar.bz2
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar.lz
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar.xz
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.tar.zst
dexon-0x-contracts-e29f130285fd688970d05549249f6e231c23541a.zip
Merge pull request #1546 from dave4506/fix/change-asset-unavail-tokens-unavail
Changed error message from "Assets Unavailable" to "Tokens Unavailable"
-rw-r--r--packages/instant/src/components/erc20_asset_amount_input.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/erc20_asset_amount_input.tsx b/packages/instant/src/components/erc20_asset_amount_input.tsx
index 0418f9165..7e09f777a 100644
--- a/packages/instant/src/components/erc20_asset_amount_input.tsx
+++ b/packages/instant/src/components/erc20_asset_amount_input.tsx
@@ -95,7 +95,7 @@ export class ERC20AssetAmountInput extends React.PureComponent<ERC20AssetAmountI
if (_.isUndefined(numberOfAssetsAvailable)) {
text = 'Loading...';
} else if (numberOfAssetsAvailable === 0) {
- text = 'Assets Unavailable';
+ text = 'Tokens Unavailable';
}
return (
<Flex>