From f3ea3460bbba46cc484efa24a5652acbfd4c07a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Wed, 15 Jul 2015 17:22:28 +0200 Subject: [PATCH] reload piece list after clicking on create editions --- js/components/ascribe_buttons/create_editions_button.js | 3 --- js/components/ascribe_detail/piece.js | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/js/components/ascribe_buttons/create_editions_button.js b/js/components/ascribe_buttons/create_editions_button.js index beeb1e97..ac6fe543 100644 --- a/js/components/ascribe_buttons/create_editions_button.js +++ b/js/components/ascribe_buttons/create_editions_button.js @@ -5,7 +5,6 @@ import React from 'react'; import EditionListActions from '../../actions/edition_list_actions'; import EditionListStore from '../../stores/edition_list_store'; -import { getAvailableAcls } from '../../utils/acl_utils'; import { getLangText } from '../../utils/lang_utils'; import classNames from 'classnames'; @@ -65,8 +64,6 @@ let CreateEditionsButton = React.createClass({ render: function () { let piece = this.props.piece; - let availableAcls = getAvailableAcls(piece); - if (!piece.acl.acl_editions || piece.num_editions > 0){ return null; } diff --git a/js/components/ascribe_detail/piece.js b/js/components/ascribe_detail/piece.js index 51f902b3..9ad80e1c 100644 --- a/js/components/ascribe_detail/piece.js +++ b/js/components/ascribe_detail/piece.js @@ -79,6 +79,7 @@ let Piece = React.createClass({ handleEditionCreationSuccess() { PieceActions.updateProperty({key: 'num_editions', value: 0}); + PieceListStore.fetchPieceList(this.state.page, this.state.pageSize, this.state.search, this.state.orderBy, this.state.orderAsc); this.toggleCreateEditionsDialog(); },