Skip to content
Merged
Prev Previous commit
Next Next commit
refactor: TTA-196 2 digits for fixed point duration of time entries i…
…n reports
  • Loading branch information
mmaquina committed Oct 27, 2022
commit 4f42ff4aecd5ce34f3304b4ce31ba762097e4e0e
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ testem.log
/typings
debug.log
*.vscode
.hintrc

# System Files
.DS_Store
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Pipe, PipeTransform } from '@angular/core';
import * as moment from 'moment';

const FIXED_POINT_DIGITS = 1;
const FIXED_POINT_DIGITS = 2;
@Pipe({
name: 'substractDateDisplayAsFloat'
})
Expand Down