Skip to content

Commit

Permalink
fix: change contact list class to allow following link (#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccollam authored and asbiin committed Dec 6, 2018
1 parent 55d64c5 commit 09b0d70
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions resources/views/people/modal/activity_view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@

<label for="summary">{{ trans('people.activities_who_was_involved') }}</label>
<ul class="contacts">
<ul class="contacts-list">
@foreach ($activity->contacts as $contact)
<li class="pretty-tag"><a href="{{ route('people.show', $contact) }}">{{ $contact->first_name }} {{ $contact->last_name }}</a></li>
@endforeach
</ul>
@foreach ($activity->contacts as $contact)
<li class="pretty-tag"><a href="{{ route('people.show', $contact) }}">{{ $contact->first_name }} {{ $contact->last_name }}</a></li>
@endforeach
</ul>
<br>

Expand Down

0 comments on commit 09b0d70

Please sign in to comment.