Don't display "null" as activity location in UI when reverse geocoding didn't took place #3

Merged
kabupatix merged 2 commits from 5-null-activity-location into main 2026-04-13 14:20:04 +02:00
Showing only changes of commit 53c991f1ec - Show all commits

View file

@ -209,7 +209,7 @@ const FitPubTimeline = {
@${this.escapeHtml(activity.username)} @${this.escapeHtml(activity.username)}
</a> </a>
${!activity.isLocal ? ' <span class="badge bg-info ms-1" title="Federated Activity"><i class="bi bi-globe2"></i> Remote</span>' : ''} ${!activity.isLocal ? ' <span class="badge bg-info ms-1" title="Federated Activity"><i class="bi bi-globe2"></i> Remote</span>' : ''}
${this.formatTimeAgo(activity.startedAt)} ${activity.activityLocation} ${this.formatTimeAgo(activity.startedAt)} ${activity.activityLocation ? '•' : ''} ${activity.activityLocation}
</div> </div>
</div> </div>
<div> <div>