fix: 个人空间follow项目

This commit is contained in:
gaoxiaolin.gao 2018-05-23 17:02:51 +08:00
parent 209213a074
commit 15d3736a76

View File

@ -194,7 +194,7 @@ export default class ImportInterface extends Component {
}
}
];
return (
<div>
<div className="select-project">
@ -202,7 +202,7 @@ export default class ImportInterface extends Component {
<Select value={this.state.project} style={{ width: 200 }} onChange={this.onChange}>
{projectList.map(item => {
return (
item.follow ? '' : <Option value={`${item._id}`} key={item._id}>
item.projectname ? '' : <Option value={`${item._id}`} key={item._id}>
{item.name}
</Option>
);