change header balance to 2 decimal places

This commit is contained in:
Jeremy Kauffman 2017-11-26 14:56:02 -05:00
parent c66c600b89
commit caa8cd6755
2 changed files with 2 additions and 2 deletions

View file

@ -12,8 +12,8 @@ Web UI version numbers should always match the corresponding version of LBRY App
* *
### Changed ### Changed
* The credit balance displayed in the main app navigation displays two decimal places instead of one.
* Moved all redux code into /redux folder * Moved all redux code into /redux folder
*
### Fixed ### Fixed
* Long channel names causing inconsistent thumbnail sizes (#721) * Long channel names causing inconsistent thumbnail sizes (#721)

View file

@ -19,7 +19,7 @@ const select = state => ({
isBackDisabled: selectIsBackDisabled(state), isBackDisabled: selectIsBackDisabled(state),
isForwardDisabled: selectIsForwardDisabled(state), isForwardDisabled: selectIsForwardDisabled(state),
isUpgradeAvailable: selectIsUpgradeAvailable(state), isUpgradeAvailable: selectIsUpgradeAvailable(state),
balance: formatCredits(selectBalance(state) || 0, 1), balance: formatCredits(selectBalance(state) || 0, 2),
}); });
const perform = dispatch => ({ const perform = dispatch => ({