We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c472b7 + cf6a2f6 commit 46d94a2Copy full SHA for 46d94a2
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Current Master
4
5
+- Fix "Add Token" screen referencing missing token logo urls
6
+
7
## 4.1.0 2018-2-27
8
9
- Report failed txs to Sentry with more specific message
ui/app/add-token.js
@@ -240,7 +240,7 @@ AddTokenScreen.prototype.renderTokenList = function () {
240
}, [
241
h('div.add-token__token-icon', {
242
style: {
243
- backgroundImage: `url(images/contract/${logo})`,
+ backgroundImage: logo && `url(images/contract/${logo})`,
244
},
245
}),
246
h('div.add-token__token-data', [
0 commit comments