iptdevs-design-system 2.7.64 → 2.7.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,7 +24,6 @@ import { MatIconModule } from '@angular/material/icon';
|
|
|
24
24
|
import { MatButtonModule } from '@angular/material/button';
|
|
25
25
|
import * as i2 from 'primeng/button';
|
|
26
26
|
import { ButtonModule } from 'primeng/button';
|
|
27
|
-
import * as moment from 'moment';
|
|
28
27
|
import { BehaviorSubject, map } from 'rxjs';
|
|
29
28
|
import * as i9 from 'primeng/table';
|
|
30
29
|
import { TableModule } from 'primeng/table';
|
|
@@ -3801,10 +3800,8 @@ class CodFormComponent {
|
|
|
3801
3800
|
console.log('-----');
|
|
3802
3801
|
console.log(data);
|
|
3803
3802
|
data.forEach(p => {
|
|
3804
|
-
const date = p[2]
|
|
3805
|
-
|
|
3806
|
-
const momentDate = moment(formattedDate).format().split('T')[0];
|
|
3807
|
-
dates.push(momentDate);
|
|
3803
|
+
const date = p[2];
|
|
3804
|
+
dates.push(date);
|
|
3808
3805
|
});
|
|
3809
3806
|
this.financingData = dates;
|
|
3810
3807
|
}
|