Skip to content

Commit 4f42ff4

Browse files
committed
refactor: TTA-196 2 digits for fixed point duration of time entries in reports
1 parent dd3a06c commit 4f42ff4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ testem.log
4242
/typings
4343
debug.log
4444
*.vscode
45+
.hintrc
4546

4647
# System Files
4748
.DS_Store

src/app/modules/shared/pipes/substract-date-return-float/substract-date-return-float.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Pipe, PipeTransform } from '@angular/core';
22
import * as moment from 'moment';
33

4-
const FIXED_POINT_DIGITS = 1;
4+
const FIXED_POINT_DIGITS = 2;
55
@Pipe({
66
name: 'substractDateDisplayAsFloat'
77
})

0 commit comments

Comments
 (0)