mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-26 13:00:18 +00:00
#188 comma separator between the names
This commit is contained in:
parent
a615e1eb0a
commit
cf9604e393
1 changed files with 1 additions and 2 deletions
|
@ -15,7 +15,7 @@
|
|||
</h3>
|
||||
<div>
|
||||
<ul class="list-inline">
|
||||
<li class="list-inline-item" v-for="po in poTranslators" :key="po.name">{{ po.name }}</li>
|
||||
<li class="list-inline-item" v-for="(po, index) in poTranslators" :key="po.name">{{ po.name }}<span v-if="index != (poTranslators.length - 1)">,</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
<br>
|
||||
|
@ -33,7 +33,6 @@ export default {
|
|||
|
||||
}, computed: {
|
||||
poTranslators(){
|
||||
|
||||
return this.$store.getters.getContrib
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue