Add transaction type
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
(function () {
|
||||
window.app.filter('hideZero', hideZero);
|
||||
|
||||
function hideZero() {
|
||||
return function (input) {
|
||||
|
||||
return input > 0 ? input : '';
|
||||
}
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user