From ca8ba6dabe206f492ff866aac3480edab627c601 Mon Sep 17 00:00:00 2001 From: Alasdair Smith Date: Tue, 5 Sep 2017 17:18:26 +0100 Subject: [PATCH] Fix incorrect checking of contact name --- .../ide/share/controllers/ShareProjectModalController.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/coffee/ide/share/controllers/ShareProjectModalController.coffee b/services/web/public/coffee/ide/share/controllers/ShareProjectModalController.coffee index 86588d54b2..5ede187dce 100644 --- a/services/web/public/coffee/ide/share/controllers/ShareProjectModalController.coffee +++ b/services/web/public/coffee/ide/share/controllers/ShareProjectModalController.coffee @@ -39,7 +39,7 @@ define [ $scope.autocompleteContacts = data.contacts or [] for contact in $scope.autocompleteContacts if contact.type == "user" - if contact.last_name == "" and contact.first_name = contact.email.split("@")[0] + if contact.last_name and contact.first_name == contact.email.split("@")[0] # User has not set their proper name so use email as canonical display property contact.display = contact.email else