Skip to content

Commit c0c85b5

Browse files
fix: don't show skill if we don't know its name (#713)
1 parent 20aab32 commit c0c85b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/views/character/skills.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</div>
3838
</div>
3939

40-
@foreach($character->skills->groupBy('type.groupID')->chunk(2) as $skill_group_row)
40+
@foreach($character->skills()->has('type.group')->get()->groupBy('type.groupID')->chunk(2) as $skill_group_row)
4141
<div class="row">
4242
<div class="col-md-12 mt-3">
4343
<div class="card-deck">

0 commit comments

Comments
 (0)