Skip to content
Snippets Groups Projects
Unverified Commit cfb5172c authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #3629 from nextcloud/fix/address-list-and-space

Fix space before address list 'and'
parents 9bc6e8bd b000e8d4
No related branches found
No related tags found
No related merge requests found
<template>
<span>
<template v-for="(entry, idx) in entries">
<Address :key="entry.email" :email="entry.email" :label="entry.label" /><!--
--><span v-if="idx === entries.length - 2" :key="'split' + entry.email">{{ t('mail', 'and') }}</span>
<Address :key="entry.email" :email="entry.email" :label="entry.label" />
<span v-if="idx === entries.length - 2" :key="'split' + entry.email">{{ t('mail', 'and') }}</span>
<span v-else-if="idx + 1 < entries.length" :key="'split' + entry.email">, </span>
</template>
</span>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment