fixedconflict

This commit is contained in:
Senad Uka
2015-01-28 05:05:52 +01:00
2 changed files with 9 additions and 1 deletions

View File

@@ -41,11 +41,19 @@ var ItemWithDetailsPage = React.createClass({
},
_onChange: function () {
<<<<<<< HEAD
if (this.isMounted()) {
this.setState({
item: ItemStore.getLoadedItemWithDetails()
});
}
=======
if(this.isMounted()) {
this.setState({
item: ItemStore.getSelectedItem()
});
}
>>>>>>> f0f25b10c0e909df4f366e132f46834a56493e8d
},
getInitialState: function () {

View File

@@ -10,5 +10,5 @@ Router.run(function(Handler, state) {
module.exports = {
App: ExternalApi,
Router: Routes
Router: Router
}