Browse Source

reply and retwist button in conversation and hastag fixes

master
Julian Steinwachs 9 years ago
parent
commit
257c435e20
  1. 6
      build/app-bundle.js
  2. 4
      jsx/other/Conversation.js
  3. 2
      jsx/other/Hashtag.js

6
build/app-bundle.js

@ -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})
); );
} }
}); });

4
jsx/other/Conversation.js

@ -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}/>
); );
} }
}); });

2
jsx/other/Hashtag.js

@ -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…
Cancel
Save