Fixes #3668
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
@if($components->count() > 1)
|
||||
<span class="drag-handle"><i class="ion ion-drag"></i></span>
|
||||
@endif
|
||||
{{ $component->name }} <small>{{ $component->human_status }}</small>
|
||||
{!! $component->name !!} <small>{{ $component->human_status }}</small>
|
||||
</h4>
|
||||
@if($component->group)
|
||||
<p><small>{{ trans('dashboard.components.listed_group', ['name' => $component->group->name]) }}</small></p>
|
||||
|
||||
@@ -83,12 +83,12 @@
|
||||
@foreach($componentsInGroups as $group)
|
||||
<optgroup label="{{ $group->name }}">
|
||||
@foreach($group->components as $component)
|
||||
<option value="{{ $component->id }}">{{ $component->name }}</option>
|
||||
<option value="{{ $component->id }}">{!! $component->name !!}</option>
|
||||
@endforeach
|
||||
</optgroup>
|
||||
@endforeach
|
||||
@foreach($componentsOutGroups as $component)
|
||||
<option value="{{ $component->id }}">{{ $component->name }}</option>
|
||||
<option value="{{ $component->id }}">{!! $component->name !!}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<form class='component-inline form-vertical' data-messenger="{{trans('dashboard.components.edit.success')}}">
|
||||
<div class="row striped-list-item">
|
||||
<div class="col-lg-4 col-md-3 col-sm-12">
|
||||
<h5 class="{{ $component->status_color }}">{{ $component->name }}</h5>
|
||||
<h5 class="{{ $component->status_color }}">{!! $component->name !!}</h5>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-9 col-sm-12 radio-items component-inline-update">
|
||||
@foreach(trans('cachet.components.status') as $statusID => $status)
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user