mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
accourse service: improve styles of checkboxes list
This commit is contained in:
parent
84223316c4
commit
4de106ec30
@ -1,18 +1,20 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="vue-component">
|
<div class="vue-component">
|
||||||
<h2><a id="section-60"></a>{{ $t('scopes.title') }}</h2>
|
<h2><a id="section-60"></a>{{ $t('scopes.title') }}</h2>
|
||||||
|
|
||||||
<ul>
|
<div class="mb-4">
|
||||||
<li v-for="s in scopes">
|
<div class="form-check" v-for="s in scopes">
|
||||||
<input type="checkbox" v-model="checkedScopes" :value="s" />
|
<input class="form-check-input" type="checkbox" v-model="checkedScopes" :value="s" />
|
||||||
{{ s.name.fr }}
|
<label class="form-check-label">
|
||||||
</li>
|
{{ s.name.fr }}
|
||||||
</ul>
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div v-if="!isScopeValid" class="alert alert-warning separator">
|
<div v-if="!isScopeValid" class="alert alert-warning separator">
|
||||||
{{ $t('scopes.add_at_least_one') }}
|
{{ $t('scopes.add_at_least_one') }}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user