From ced1c45a349a70567392baec0892081959f3f251 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 25 Jan 2017 15:23:50 +0000 Subject: [PATCH] Doc state in getinitialstate --- src/components/views/dialogs/ChatInviteDialog.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/views/dialogs/ChatInviteDialog.js b/src/components/views/dialogs/ChatInviteDialog.js index c35f247ad7..2326eda852 100644 --- a/src/components/views/dialogs/ChatInviteDialog.js +++ b/src/components/views/dialogs/ChatInviteDialog.js @@ -66,7 +66,14 @@ module.exports = React.createClass({ getInitialState: function() { return { error: false, + + // List of AddressTile.InviteAddressType objects represeting + // the list of addresses we're going to invite inviteList: [], + + // List of AddressTile.InviteAddressType objects represeting + // the set of autocompletion results for the current search + // query. queryList: [], }; },