This commit is contained in:
James Brooks
2019-07-11 13:14:16 +01:00
parent a1156319e8
commit 9f98683aff
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
@if($component->link)
<a href="{{ $component->link }}" target="_blank" class="links">{{ $component->name }}</a>
<a href="{{ $component->link }}" target="_blank" class="links">{!! $component->name !!}</a>
@else
{{ $component->name }}
{!! $component->name !!}
@endif
@if($component->description)
@@ -8,7 +8,7 @@
@if (in_array($component->id, $subscriptions) || $subscriber->global)
checked="checked"
@endif />
{{ $component->name }}
{!! $component->name !!}
</label>
@if($component->description)
<i class="ion ion-ios-help-outline help-icon" data-toggle="tooltip" data-title="{{ $component->description }}" data-container="body"></i>