fix bug on email separator (#792)

Signed-off-by: Denis barbaron <denis.barbaron@orange.com>
This commit is contained in:
Denis Barbaron
2024-06-20 14:59:59 +02:00
committed by GitHub
parent dfb4ebeea1
commit 875730886d
3 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/**
* Copyright © 2019 code initially contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
* Copyright © 2019-2024 code initially contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
**/
const _ = require('lodash')
@@ -83,7 +83,7 @@ module.exports = function UsersCtrl(
CommonService.copyToClipboard(users.map(function(user) {
return user.email
})
.join(SettingsService.get('emailSeparator')))
.join(SettingsService.get('emailAddressSeparator')))
.url('mailto:?body=*** Paste the email addresses from the clipboard! ***')
}