Change header balance to 2 decimal places #785

Merged
kauffj merged 1 commit from two_decimals into master 2017-11-27 15:24:33 +01:00
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
* The credit balance displayed in the main app navigation displays two decimal places instead of one.
* Moved all redux code into /redux folder
*
### Fixed
* Long channel names causing inconsistent thumbnail sizes (#721)

View file

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