fix: close unclosed img tag breaking the layout

Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
Miguel Nogueira 2022-10-26 21:18:57 +01:00
parent e24e4d1dd9
commit 9750e2cfcd
No known key found for this signature in database
GPG Key ID: 3C6A7E29AF26D370

View File

@ -484,7 +484,7 @@
@if($application->user->avatarPreference == 'gravatar')
<img class="profile-user-img img-fluid img-circle" src="https://gravatar.com/avatar/{{md5(Auth::user()->email)}}" alt="{{__("User profile picture")}}">
@else
<img class="profile-user-img img-fluid img-circle" src="https://crafatar.com/avatars/{{Auth::user()->uuid}}" alt="{{__("User profile picture")}}>
<img class="profile-user-img img-fluid img-circle" src="https://crafatar.com/avatars/{{Auth::user()->uuid}}" alt="{{__("User profile picture")}}">
@endif
</div>
@ -512,7 +512,7 @@
<div class="col text-right">
<p class="text-sm text-muted"><span id="charcount">0</span>/600 {{__(' max characters')}}</p>
<p class="text-sm text-muted">{!! __('<span id="charcount">0</span>/600 max characters') !!}</p>
</div>