mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-03-12 13:31:17 +00:00
reply and retwist button in conversation and hastag fixes
This commit is contained in:
parent
f633522113
commit
257c435e20
@ -1564,7 +1564,7 @@ module.exports = Conversation = React.createClass({displayName: "Conversation",
|
|||||||
|
|
||||||
//alert("got event")
|
//alert("got event")
|
||||||
|
|
||||||
this.updatePosts(-1);
|
this.updatePosts(0);
|
||||||
|
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
@ -1573,7 +1573,7 @@ module.exports = Conversation = React.createClass({displayName: "Conversation",
|
|||||||
React.createElement(ListGroupItem, null,
|
React.createElement(ListGroupItem, null,
|
||||||
"Conversation"
|
"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,
|
React.createElement(ListGroupItem, null,
|
||||||
"Hashtag"
|
"Hashtag"
|
||||||
),
|
),
|
||||||
data: this.state.data, loading: this.state.loading})
|
data: this.state.data, loading: this.state.loading, activeAccount: this.props.activeAccount})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -87,7 +87,7 @@ module.exports = Conversation = React.createClass({
|
|||||||
|
|
||||||
//alert("got event")
|
//alert("got event")
|
||||||
|
|
||||||
this.updatePosts(-1);
|
this.updatePosts(0);
|
||||||
|
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
@ -96,7 +96,7 @@ module.exports = Conversation = React.createClass({
|
|||||||
<ListGroupItem>
|
<ListGroupItem>
|
||||||
Conversation
|
Conversation
|
||||||
</ListGroupItem>
|
</ListGroupItem>
|
||||||
} data={this.state.data} loading={this.state.loading}/>
|
} data={this.state.data} loading={this.state.loading} activeAccount={this.props.activeAccount}/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
@ -74,7 +74,7 @@ module.exports = Hashtag = React.createClass({
|
|||||||
<ListGroupItem>
|
<ListGroupItem>
|
||||||
Hashtag
|
Hashtag
|
||||||
</ListGroupItem>
|
</ListGroupItem>
|
||||||
} data={this.state.data} loading={this.state.loading}/>
|
} data={this.state.data} loading={this.state.loading} activeAccount={this.props.activeAccount}/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
Loading…
x
Reference in New Issue
Block a user