Use correct audit icon

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-04-08 04:15:59 +01:00
parent b51939ae76
commit 849da2fb63
2 changed files with 5 additions and 1 deletions

View file

@ -102,6 +102,10 @@ class ActionlogPresenter extends Presenter
return 'fas fa-sticky-note'; return 'fas fa-sticky-note';
} }
if ($this->action_type == 'audit') {
return 'fas fa-clipboard-check';
}
return 'fa-solid fa-rotate-right'; return 'fa-solid fa-rotate-right';
} }

View file

@ -526,7 +526,7 @@ dir="{{ Helper::determineLanguageDirection() }}">
@can('audit', \App\Models\Asset::class) @can('audit', \App\Models\Asset::class)
<li{!! (Request::is('hardware/audit/due') ? ' class="active"' : '') !!}> <li{!! (Request::is('hardware/audit/due') ? ' class="active"' : '') !!}>
<a href="{{ route('assets.audit.due') }}"> <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') }} {{ trans('general.audit_due') }}
<span class="badge">{{ (isset($total_due_and_overdue_for_audit)) ? $total_due_and_overdue_for_audit : '' }}</span> <span class="badge">{{ (isset($total_due_and_overdue_for_audit)) ? $total_due_and_overdue_for_audit : '' }}</span>
</a> </a>