1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Merge pull request #4589 from beganovich/v4-toggle-parent-when-force

(v4) Toggle parent company when clicking on force checkbox (migration)
This commit is contained in:
David Bomba 2020-12-30 10:20:57 +11:00 committed by GitHub
commit 18cde4bc5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@
</div>
<div class="form-group">
<label for="companies[{{ $company['company_key'] }}][force]">
<input type="checkbox" id="companies[{{ $company['company_key'] }}][force]" name="companies[{{ $company['company_key'] }}][force]">
<input type="checkbox" onclick="document.getElementById('{{ $company['company_key'] }}').checked = true" id="companies[{{ $company['company_key'] }}][force]" name="companies[{{ $company['company_key'] }}][force]">
<small>{!! trans('texts.force_migration') !!}</small>
</label>
</div>