Skip to content

Commit dcc0f90

Browse files
authored
Merge pull request #912 from eekdood/tag-hyperlink-fix
fix links in tag list
2 parents 75014c8 + 1ac5eb6 commit dcc0f90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/tags/list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@foreach($apps as $app)
3131
<tr>
3232
<td>{{ $app->title }}</td>
33-
<td><a{{ $app->target }} href="{{ url('tag/'.$app->link) }}">{{ $app->link }}</a></td>
33+
<td><a{{ $app->target }} href="{{ url($app->link) }}">{{ $app->link }}</a></td>
3434
<td class="text-center"><a href="{!! route('tags.edit', [$app->id]) !!}" title="{{ __('app.settings.edit') }} {!! $app->title !!}"><i class="fas fa-edit"></i></a></td>
3535
<td class="text-center">
3636
{!! Form::open(['method' => 'DELETE','route' => ['tags.destroy', $app->id],'style'=>'display:inline']) !!}

0 commit comments

Comments
 (0)