Compare commits
2 Commits
feaa370338
...
27ffac59d9
Author | SHA1 | Date |
---|---|---|
argirok | 27ffac59d9 | |
argirok | 4ea707cbaf |
|
@ -366,6 +366,11 @@ export class DisplayClaimsComponent implements OnInit, OnDestroy {
|
||||||
let lastUpdateDateStr = Dates.getDateToString(lastUpdateDate);
|
let lastUpdateDateStr = Dates.getDateToString(lastUpdateDate);
|
||||||
let claimDate = new Date(claim.date);
|
let claimDate = new Date(claim.date);
|
||||||
let claimDateStr = Dates.getDateToString(claimDate);
|
let claimDateStr = Dates.getDateToString(claimDate);
|
||||||
|
//TODO remove when organization links are integrated in Graph ------>
|
||||||
|
if(claim.sourceType == 'organization'){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// remove until here <-------
|
||||||
if (claimDateStr < lastUpdateDateStr) {
|
if (claimDateStr < lastUpdateDateStr) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue