Skip to content

Commit

Permalink
Merge pull request MyEtherWallet#1025 from MyEtherWallet/devop/fix-ha…
Browse files Browse the repository at this point in the history
…rdware-icons

Devop/fix hardware icons
  • Loading branch information
gamalielhere authored May 1, 2019
2 parents a8ccade + d26ef80 commit deba41f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Add presale eth and old mew eth wallet support [#985](https://github.com/MyEtherWallet/MyEtherWallet/pull/985)
- Check private key format [#1014](https://github.com/MyEtherWallet/MyEtherWallet/pull/1014)
- Update usage of Kyber supplied gas limits and serverless provider [#969](https://github.com/MyEtherWallet/MyEtherWallet/pull/969)
- Fix hardware access icons not displaying [#1025](https://github.com/MyEtherWallet/MyEtherWallet/pull/1025)


### Bug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import bitbox from '@/assets/images/icons/HardwareWallet/bitbox.svg';
import secalot from '@/assets/images/icons/HardwareWallet/secalot.svg';
import trezor from '@/assets/images/icons/HardwareWallet/trezor.svg';
import keepkey from '@/assets/images/icons/HardwareWallet/keepkey.svg';
import finney from '@/assets/images/icons/button-finney.png';
import finney from '@/assets/images/icons/button-finney-hover.png';
import WalletOption from '../WalletOption';
import { Toast } from '@/helpers';
import { isSupported } from 'u2f-api';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
]"
>
<div class="img-title-container">
<img :src="hoverIcon" class="icon" />
<img :src="hoverIcon ? hoverIcon : regularIcon" class="icon" />
<div class="title-link-container">
<span>{{ text }}</span>
<a
Expand Down Expand Up @@ -65,6 +65,10 @@ export default {
link: {
type: String,
default: ''
},
regularIcon: {
type: String,
default: ''
}
},
data() {
Expand Down
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ if (process.env.NODE_ENV === 'production') {
'src/components/Notification/components/NotificationTypes/SwapNotification/index.js',
'src/components/Notification/components/NotificationTypes/TransactionNotification/index.js',
// Images
'src/assets/images/icons/button-finney-hover.png',
'src/assets/images/icons/button-finney.png',
'src/assets/images/background/bg-left.png',
'src/assets/images/background/bg-right.png',
'src/assets/images/currency/coins/AllImages/_icon-config.json',
Expand Down

0 comments on commit deba41f

Please sign in to comment.