3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 21:15:41 +00:00

Merge pull request #11526 from snipe/fixes/use_icheck_on_custom_report

Use icheckbox formatting on BOM and archived checkboxes
This commit is contained in:
snipe
2022-07-18 12:13:27 -07:00
committed by GitHub

View File

@ -341,11 +341,13 @@
<div class="col-md-9 col-md-offset-3">
<label>
{{ Form::checkbox('exclude_archived', '1') }}
{{ Form::checkbox('exclude_archived', '1', old('exclude_archived'), ['class' => 'minimal']) }}
{{ trans('general.exclude_archived') }}
</label>
</div>
<div class="col-md-9 col-md-offset-3">
<label>
{{ Form::checkbox('use_bom', '1') }}
{{ Form::checkbox('use_bom', '1', old('use_bom'), ['class' => 'minimal']) }}
{{ trans('general.bom_remark') }}
</label>
</div>