This commit is contained in:
Thomas G 2022-07-15 21:23:23 +10:00
commit 7f72f02f80
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
<div class="FeedContainerBoxTextContainer" id="FeedContainerBox1TextContainer"> <div class="FeedContainerBoxTextContainer" id="FeedContainerBox1TextContainer">
<a href="{{ route('profile', $post->user->id) }}" <a href="{{ route('profile', $post->user->id) }}"
id="FeedContainerBox1Username">{{ $post->user->name }}</a> id="FeedContainerBox1Username">{{ $post->user->name }}</a>
<p id="FeedContainerBox1Text">"{{ $post->status }}"</p> <p id="FeedContainerBox1Text" style="word-wrap:break-word;max-width:400px">"{{ $post->status }}"</p>
<p id="FeedContainerBox1Timestamp">{{ $post->created_at->format('F d, Y h:i A') }}</p> <p id="FeedContainerBox1Timestamp">{{ $post->created_at->format('F d, Y h:i A') }}</p>
</div> </div>
</div> </div>

View File

@ -46,7 +46,7 @@
<div class="content_special"> <div class="content_special">
<div id="profileleftcontainer"> <div id="profileleftcontainer">
@if (!empty($data['user']->feedposts->last()->status)) @if (!empty($data['user']->feedposts->last()->status))
<address id="status">"{{ $data['user']->feedposts->last()->status }}"</address> <address id="status" style="word-wrap:break-word">"{{ $data['user']->feedposts->last()->status }}"</address>
@else @else
<address id="status">"I'm new to ARCHBLOX!"</address> <address id="status">"I'm new to ARCHBLOX!"</address>
@endif @endif