// To make the app more responsive, immediately get the status into the columns
dispatch(updateTimeline('home', { ...response.data }));
- if (response.data.in_reply_to_id === null && !getState().getIn(['compose', 'private']) && !getState().getIn(['compose', 'unlisted'])) {
+ if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
dispatch(updateTimeline('public', { ...response.data }));
}
}).catch(function (error) {
const Button = React.createClass({
propTypes: {
- text: React.PropTypes.string,
+ text: React.PropTypes.node,
onClick: React.PropTypes.func,
disabled: React.PropTypes.bool,
block: React.PropTypes.bool,