reply and retwist button in conversation and hastag fixes

This commit is contained in:
Julian Steinwachs 2015-08-16 16:35:24 +02:00
parent f633522113
commit 257c435e20
3 changed files with 6 additions and 6 deletions

View File

@ -1564,7 +1564,7 @@ module.exports = Conversation = React.createClass({displayName: "Conversation",
//alert("got event")
this.updatePosts(-1);
this.updatePosts(0);
},
render: function() {
@ -1573,7 +1573,7 @@ module.exports = Conversation = React.createClass({displayName: "Conversation",
React.createElement(ListGroupItem, null,
"Conversation"
),
data: this.state.data, loading: this.state.loading})
data: this.state.data, loading: this.state.loading, activeAccount: this.props.activeAccount})
);
}
});
@ -1654,7 +1654,7 @@ module.exports = Hashtag = React.createClass({displayName: "Hashtag",
React.createElement(ListGroupItem, null,
"Hashtag"
),
data: this.state.data, loading: this.state.loading})
data: this.state.data, loading: this.state.loading, activeAccount: this.props.activeAccount})
);
}
});

View File

@ -87,7 +87,7 @@ module.exports = Conversation = React.createClass({
//alert("got event")
this.updatePosts(-1);
this.updatePosts(0);
},
render: function() {
@ -96,7 +96,7 @@ module.exports = Conversation = React.createClass({
<ListGroupItem>
Conversation
</ListGroupItem>
} data={this.state.data} loading={this.state.loading}/>
} data={this.state.data} loading={this.state.loading} activeAccount={this.props.activeAccount}/>
);
}
});

View File

@ -74,7 +74,7 @@ module.exports = Hashtag = React.createClass({
<ListGroupItem>
Hashtag
</ListGroupItem>
} data={this.state.data} loading={this.state.loading}/>
} data={this.state.data} loading={this.state.loading} activeAccount={this.props.activeAccount}/>
);
}
});