mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Use parseEscapedMarkedownInline for more views
This commit is contained in:
parent
d40a03b4c5
commit
d556f0d275
|
@ -279,7 +279,7 @@
|
||||||
</strong>
|
</strong>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
{!! nl2br(e($component->notes)) !!}
|
{!! nl2br(Helper::parseEscapedMarkedownInline($component->notes)) !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
|
@ -303,7 +303,7 @@
|
||||||
@if ($model->notes)
|
@if ($model->notes)
|
||||||
<li>
|
<li>
|
||||||
{{ trans('general.notes') }}:
|
{{ trans('general.notes') }}:
|
||||||
{{ $model->notes }}
|
{!! nl2br(Helper::parseEscapedMarkedownInline($model->notes)) !!}
|
||||||
</li>
|
</li>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue