Skip to content

Commit dc4b4ff

Browse files
authored
Merge pull request DSpace#1933 from TexasDigitalLibrary/DSpace-8298
DS-8298: fixes issue where the lastHarvested and message fields were reversed
2 parents 95a848a + 448f6a7 commit dc4b4ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ <h4>{{ 'collection.source.controls.head' | translate }}</h4>
1111
</div>
1212
<div>
1313
<span class="font-weight-bold">{{'collection.source.controls.harvest.last' | translate}}</span>
14-
<span>{{contentSource?.message ? contentSource?.message : 'collection.source.controls.harvest.no-information'|translate }}</span>
14+
<span>{{contentSource?.lastHarvested ? contentSource?.lastHarvested : 'collection.source.controls.harvest.no-information'|translate }}</span>
1515
</div>
1616
<div>
1717
<span class="font-weight-bold">{{'collection.source.controls.harvest.message' | translate}}</span>
18-
<span>{{contentSource?.lastHarvested ? contentSource?.lastHarvested : 'collection.source.controls.harvest.no-information'|translate }}</span>
18+
<span>{{contentSource?.message ? contentSource?.message: 'collection.source.controls.harvest.no-information'|translate }}</span>
1919
</div>
2020

2121
<button *ngIf="!(testConfigRunning$ |async)" class="btn btn-secondary"

0 commit comments

Comments
 (0)