Fixed layout, relative time. Standardize on use of timeService.
This commit is contained in:
parent
59edea271b
commit
ae777d6639
10 changed files with 40 additions and 34 deletions
|
|
@ -201,7 +201,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
};
|
||||
|
||||
$scope.createdDuringSameMonth = function(curTx, prevTx) {
|
||||
return timeService.withinSameMonth(curTx.time, prevTx.time);
|
||||
return timeService.withinSameMonth(curTx.time * 1000, prevTx.time * 1000);
|
||||
};
|
||||
|
||||
$scope.createdWithinPastDay = function(time) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue