Skip to content

Commit ee546ee

Browse files
LeonVrelingWikiRik
andauthored
fix(network): use NetCom GSuite accounts if it is set (#2325)
Co-authored-by: Rik Smale <[email protected]>
1 parent 33029c1 commit ee546ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/network/AntennaCriteriaCheck.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ export default {
426426
this.netcommies = netcomMembersResponse.data.data.map(netcommie => ({
427427
user_id: netcommie.user_id,
428428
first_name: netcommie.user.first_name,
429-
email: netcommie.user.email
429+
email: netcommie.user.gsuite_id ? netcommie.user.gsuite_id : netcommie.user.email
430430
}))
431431
this.netcommies.push({ 'user_id': 0, 'first_name': 'Not set', 'email': '' })
432432
})

0 commit comments

Comments
 (0)