diff --git a/resources/views/tracker.blade.php b/resources/views/tracker.blade.php
index 1a074b8..c8e0f69 100644
--- a/resources/views/tracker.blade.php
+++ b/resources/views/tracker.blade.php
@@ -42,13 +42,15 @@
- {{ $checkin->title ?? "[No title]" }}
+ {!! $checkin->title ?? "Untitled" !!}
{!! render_date_difference($checkin->date) !!}
- {{ $checkin->note ?? "[No note]" }}
- @if($checkin->image_url)
-
- @endif
+ @if($checkin->note)
+ {!! $checkin->note !!}
+ @endif
+ @if($checkin->image_url)
+
+ @endif
@endforeach
@@ -90,8 +92,8 @@
@foreach($trip->checkins as $checkin)
marker = L.marker([{{ $checkin->location->latitude }}, {{ $checkin->location->longitude }}]).addTo(map);
- popupMarkup = '';
- popupMarkup += ``;
+ popupMarkup = ``;
+ popupMarkup += ``;
popupMarkup += '';
marker.bindPopup(popupMarkup).openPopup();