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

4
jsx/other/Conversation.js

@ -87,7 +87,7 @@ module.exports = Conversation = React.createClass({ @@ -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({ @@ -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}/>
);
}
});

2
jsx/other/Hashtag.js

@ -74,7 +74,7 @@ module.exports = Hashtag = React.createClass({ @@ -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}/>
);
}
});
Loading…
Cancel
Save