This commit is contained in:
Mathieu Jaumotte 2021-11-18 17:56:46 +01:00
parent a600196151
commit aba47600ff

View File

@ -119,9 +119,9 @@
<div id="persons" class="action-row">
<h3>{{ $t('persons_involved') }}</h3>
<ul>
<ul class="list-unstyled">
<li v-for="p in personsReachables" :key="p.id">
<input v-model="personsPicked" :value="p.id" type="checkbox">
<input v-model="personsPicked" :value="p.id" type="checkbox" class="me-2">
<person-render-box render="badge" :options="{}" :person="p"></person-render-box>
</li>
</ul>