Skip to content

Commit

Permalink
Remove data-turbo false from hash links no longer needed (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsmink authored Jan 31, 2023
1 parent f19515d commit c69f8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/overview.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<div class="grid gap-3 gap-5 grid-cols-3 sm:grid-cols-4 md:grid-cols-5 mb-5">
@foreach($categories as $category)
<a href="#group{{ $category->faqgroup_id }}" class="text-center" data-turbo="false">
<a href="#group{{ $category->faqgroup_id }}" class="text-center">
<img src="{{ config('rapidez.media_url') }}/faq/tmp/icon/{{ $category->icon }}" alt="{{ $category->groupname }}" class="w-full border p-3 mb-2 hover:border-primary">
<strong class="hover:underline">{{ $category->groupname }}</strong>
</a>
Expand Down

0 comments on commit c69f8bd

Please sign in to comment.