mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Fixed <b> to <strong>
This commit is contained in:
parent
03be4e74df
commit
54a96b8453
|
@ -207,7 +207,7 @@
|
|||
<li class="dropdown" aria-hidden="true">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||
{{ trans('general.create') }}
|
||||
<b class="caret"></b>
|
||||
<b class="caret"></strong>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
@can('create', \App\Models\Asset::class)
|
||||
|
@ -319,7 +319,7 @@
|
|||
<i class="fa fa-user fa-fws" aria-hidden="true"></i>
|
||||
@endif
|
||||
|
||||
<span class="hidden-xs">{{ Auth::user()->first_name }} <b class="caret"></b></span>
|
||||
<span class="hidden-xs">{{ Auth::user()->first_name }} <b class="caret"></strong></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<!-- User image -->
|
||||
|
@ -775,7 +775,7 @@
|
|||
<div class="pull-right hidden-xs">
|
||||
@if ($snipeSettings->version_footer!='off')
|
||||
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
|
||||
<b>Version</b> {{ config('version.app_version') }} - build {{ config('version.build_version') }} ({{ config('version.branch') }})
|
||||
<strong>Version</strong> {{ config('version.app_version') }} - build {{ config('version.build_version') }} ({{ config('version.branch') }})
|
||||
@endif
|
||||
@endif
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<div class="box box-default">
|
||||
<div class="box-header with-border">
|
||||
@foreach ($models as $model)
|
||||
<span class="box-title"><b>{{ $model->display_name }}</b> ({{ $model->model_number }})</span><br />
|
||||
<span class="box-title"><strong>{{ $model->display_name }}</strong> ({{ $model->model_number }})</span><br />
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="box-body">
|
||||
|
|
Loading…
Reference in a new issue