Fix for initial state of show archived user checkbox

This commit is contained in:
Hillel Coren 2017-03-23 17:48:44 +02:00
parent d690fc5c79
commit c9aea283b8

View File

@ -16,7 +16,7 @@
<label for="trashed" style="font-weight:normal; margin-left: 10px;"> <label for="trashed" style="font-weight:normal; margin-left: 10px;">
<input id="trashed" type="checkbox" onclick="setTrashVisible()" <input id="trashed" type="checkbox" onclick="setTrashVisible()"
{!! Session::get('entity_state_filter:user') != 'active' ? 'checked' : ''!!}/> {!! trans('texts.show_archived_users')!!} {!! Session::get('entity_state_filter:user', STATUS_ACTIVE) != 'active' ? 'checked' : ''!!}/> {!! trans('texts.show_archived_users')!!}
</label> </label>
@include('partials.bulk_form', ['entityType' => ENTITY_USER]) @include('partials.bulk_form', ['entityType' => ENTITY_USER])