Skip to content

Commit

Permalink
fix: text encoding in tag labels
Browse files Browse the repository at this point in the history
Resolves platform-coop-toolkit/coop-library-framework#270.
  • Loading branch information
greatislander committed Jan 27, 2020
1 parent 2d576bd commit f291191
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="resource__tags">
<ul class="tags">
@foreach(Single::getTopics() as $topic)
<li class="tag"><a class="tag__link" href="{{ $topic['url'] }}"><span class="screen-reader-text">{{ __('Topic', 'coop-library') }}: </span>{{ $topic['name'] }}</a></li>
<li class="tag"><a class="tag__link" href="{{ $topic['url'] }}"><span class="screen-reader-text">{{ __('Topic', 'coop-library') }}: </span>{!! $topic['name'] !!}</a></li>
@endforeach
</ul>
{{-- <button id="suggest-edits" type="button" class="button">
Expand Down

0 comments on commit f291191

Please sign in to comment.