|
|
@@ -2,7 +2,6 @@
|
|
2
|
2
|
|
|
3
|
3
|
import Avatar from '@atlaskit/avatar';
|
|
4
|
4
|
import InlineMessage from '@atlaskit/inline-message';
|
|
5
|
|
-import { Immutable } from 'nuclear-js';
|
|
6
|
5
|
import PropTypes from 'prop-types';
|
|
7
|
6
|
import React, { Component } from 'react';
|
|
8
|
7
|
import { connect } from 'react-redux';
|
|
|
@@ -114,16 +113,10 @@ class AddPeopleDialog extends Component<*, *> {
|
|
114
|
113
|
*/
|
|
115
|
114
|
addToCallInProgress: false,
|
|
116
|
115
|
|
|
117
|
|
-
|
|
118
|
|
- // FIXME: Remove usage of Immutable. {@code MultiSelectAutocomplete}
|
|
119
|
|
- // will default to having its internal implementation use a plain array
|
|
120
|
|
- // if no {@link defaultValue} is passed in. As such is the case, this
|
|
121
|
|
- // instance of Immutable.List gets overridden with an array on the first
|
|
122
|
|
- // search.
|
|
123
|
116
|
/**
|
|
124
|
117
|
* The list of invite items.
|
|
125
|
118
|
*/
|
|
126
|
|
- inviteItems: new Immutable.List()
|
|
|
119
|
+ inviteItems: []
|
|
127
|
120
|
};
|
|
128
|
121
|
|
|
129
|
122
|
/**
|