From b56ae0e145fb3c807cc35dc76e3d4d74f4fbf71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Fri, 7 Aug 2015 14:50:34 +0200 Subject: [PATCH] fix requestActions requests --- js/components/piece_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/components/piece_list.js b/js/components/piece_list.js index 9321c693..78917f61 100644 --- a/js/components/piece_list.js +++ b/js/components/piece_list.js @@ -46,7 +46,7 @@ let PieceList = React.createClass({ if (this.state.pieceList.length === 0){ PieceListActions.fetchPieceList(page, this.state.pageSize, this.state.search, this.state.orderBy, this.state.orderAsc, this.state.filterBy) - .then(PieceListActions.fetchPieceRequestActions()); + .then(() => PieceListActions.fetchPieceRequestActions()); } },