Skip to content

Commit

Permalink
Blade Style Change (Prettier Blade CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
HDVinnie authored and Obi-Wana committed Dec 9, 2024
1 parent bc9d016 commit de52951
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/sass/components/forum/_post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -406,4 +406,4 @@
-webkit-transform: scale(1);
transform: scale(1);
}
}
}
6 changes: 4 additions & 2 deletions resources/views/components/forum/post.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ class="post__datetime"
by
<a
class="user-tag__link {{ $post->updatedBy->group->icon ?? $post->user->group->icon }}"
href="{{ route('users.show', ['user' => $post->updatedBy ?? $post->user ]) }}"
style="color: {{ $post->updatedBy->group->color ?? $post->user->group->color }}"
href="{{ route('users.show', ['user' => $post->updatedBy ?? $post->user]) }}"
style="
color: {{ $post->updatedBy->group->color ?? $post->user->group->color }};
"
title="{{ $post->updatedBy->group->name ?? $post->user->group->name }}"
>
{{ $post->updatedBy?->username ?? $post->user->username }}
Expand Down

0 comments on commit de52951

Please sign in to comment.