Skip to content

Commit

Permalink
fix: restore mod slug in dashboard index
Browse files Browse the repository at this point in the history
This was accidentally dropped in 26c24f9
  • Loading branch information
Pyker committed Nov 29, 2024
1 parent c87f825 commit 1f36cba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion resources/views/dashboard/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,12 @@ class="panel-collapse collapse in"
</td>
<td>{{ $modversion->version }}</td>
<td>
<a href="{{ url('/mod/view/'.$modversion->mod->id) }}">{{ $modversion->mod->pretty_name ?: $modversion->mod->name }}</a>
<a href="{{ url('/mod/view/'.$modversion->mod->id) }}">
{{ $modversion->mod->pretty_name ?: $modversion->mod->name }}
@if (!empty($modversion->mod->pretty_name))
({{ $modversion->mod->name }})
@endif
</a>
</td>
<td>{{ $modversion->mod->author ?: "N/A" }}</td>
<td>
Expand Down

0 comments on commit 1f36cba

Please sign in to comment.