From 345855bc40f588dcbb4192f27c78496f38eb57bf Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 31 Oct 2016 18:04:29 +0000 Subject: [PATCH] Fix: latitude was being used for longitude value --- changelog.md | 3 +++ resources/views/templates/note.blade.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 22115b13..7911ef31 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version {next} + - Fix: update note view to use longitude in h-card for a place + ## Version 0.0.15.4 (2016-10-26) - Use an array with `syndicate-to` to allow multiple values diff --git a/resources/views/templates/note.blade.php b/resources/views/templates/note.blade.php index 60db7d8c..66f7bbb7 100644 --- a/resources/views/templates/note.blade.php +++ b/resources/views/templates/note.blade.php @@ -16,7 +16,7 @@
@if($note->client_name) via {{ $note->client_name }}@endif - @if($note->placeLink)in {{ $note->address }} + @if($note->placeLink)in {{ $note->address }} @elseif($note->address)in {!! $note->address !!}@endif @if($note->replies > 0)Replies: {{ $note->replies }}@endif @if($note->tweet_id)@include('templates.social-links', ['tweet_id' => $note->tweet_id, 'nb60id' => $note->nb60id])@endif