From e5ec9c16af7773aee27e4dc903f9616f7d00febd Mon Sep 17 00:00:00 2001 From: Evan Morikawa Date: Mon, 16 Mar 2015 13:55:17 -0700 Subject: [PATCH] fix(participants): make remove menu option work --- internal_packages/composer/lib/participants-text-field.cjsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_packages/composer/lib/participants-text-field.cjsx b/internal_packages/composer/lib/participants-text-field.cjsx index 39eca2926..b3c96b4e4 100644 --- a/internal_packages/composer/lib/participants-text-field.cjsx +++ b/internal_packages/composer/lib/participants-text-field.cjsx @@ -131,7 +131,7 @@ ParticipantsTextField = React.createClass )) menu.append(new MenuItem( label: 'Remove', - click: => @_remove(participant) + click: => @_remove([participant]) )) menu.popup(remote.getCurrentWindow())