[develop | DONE | FIXED] linking update check to decide if claim is pending and show the link to landing

This commit is contained in:
argirok 2024-03-21 09:47:02 +02:00
parent 95097beaae
commit d6b924bcaa
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ export class DisplayClaimsComponent implements OnInit, OnDestroy {
if (claimDateStr < lastUpdateDateStr) {
return true;
} else {
return claim.target.collectedFrom != "infrastruct_::openaire" && claim.indexed;
return claim.target.collectedFrom != "infrastruct_::openaire";
}
}