Remove trailing space

This commit is contained in:
Edward Betts 2021-06-18 19:26:07 +02:00
parent f6f4612c61
commit bfd0012eb5
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@
<div class="list-group" @mouseout="this.hover_isa=undefined">
<label class="list-group-item list-group-item-action d-flex justify-content-between align-items-center" v-for="isa in isa_list" @mouseenter="this.hover_isa=isa">
<span>
<input class="form-check-input me-1" type="checkbox" :id="'isa-' + isa.qid" :value="isa.qid" v-model="isa_ticked">
<input class="form-check-input me-1" type="checkbox" :id="'isa-' + isa.qid" :value="isa.qid" v-model="isa_ticked">
{{ isa.label }} ({{ isa.qid }})
<a href="#" @click.stop="isa_ticked=[isa.qid]">only</a>
</span>