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
commit ec01aadbe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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>