Skip to content

Commit 448f6a7

Browse files
committed
fixes issue where the lastHarvested and message fields were reversed
1 parent 0395480 commit 448f6a7

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)