Skip to content

Commit

Permalink
resolves decimal issue and CSS bug in export button
Browse files Browse the repository at this point in the history
  • Loading branch information
comountainclimber committed Apr 19, 2019
1 parent 3014fbd commit da17319
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/containers/TransactionHistory/TransactionHistory.scss
Expand Up @@ -19,7 +19,7 @@

svg {
path {
fill: var(--header-bar-default-icon-color);
fill: var(--header-bar-default-icon-color) !important;
}
}
}
4 changes: 3 additions & 1 deletion app/core/nep5.js
Expand Up @@ -12,7 +12,7 @@ import {
} from './constants'
import { imageMap } from '../assets/nep5/png'

let fetchedTokens
let fetchedTokens = TOKENS

export const adjustDecimalAmountForTokenTransfer = (value: string): string =>
toBigNumber(value)
Expand Down Expand Up @@ -69,6 +69,8 @@ export const getDefaultTokens = async (): Promise<Array<TokenItemType>> => {
tokenData.symbol,
tokenData.networks['1'].hash,
MAIN_NETWORK_ID,
tokenData.networks['1'].name,
tokenData.networks['1'].decimals,
tokenData.networks['1'],
),
),
Expand Down

0 comments on commit da17319

Please sign in to comment.