Use correct audit icon
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
b51939ae76
commit
849da2fb63
2 changed files with 5 additions and 1 deletions
|
@ -102,6 +102,10 @@ class ActionlogPresenter extends Presenter
|
|||
return 'fas fa-sticky-note';
|
||||
}
|
||||
|
||||
if ($this->action_type == 'audit') {
|
||||
return 'fas fa-clipboard-check';
|
||||
}
|
||||
|
||||
return 'fa-solid fa-rotate-right';
|
||||
|
||||
}
|
||||
|
|
|
@ -526,7 +526,7 @@ dir="{{ Helper::determineLanguageDirection() }}">
|
|||
@can('audit', \App\Models\Asset::class)
|
||||
<li{!! (Request::is('hardware/audit/due') ? ' class="active"' : '') !!}>
|
||||
<a href="{{ route('assets.audit.due') }}">
|
||||
<x-icon type="due" class="text-yellow fa-fw"/>
|
||||
<x-icon type="audit" class="text-yellow fa-fw"/>
|
||||
{{ trans('general.audit_due') }}
|
||||
<span class="badge">{{ (isset($total_due_and_overdue_for_audit)) ? $total_due_and_overdue_for_audit : '' }}</span>
|
||||
</a>
|
||||
|
|
Loading…
Add table
Reference in a new issue