diff --git a/app/components/BookBuilder/Chapter/AlignmentBox.jsx b/app/components/BookBuilder/Chapter/AlignmentBox.jsx index 19d98f0a2eb75991d0425ab169bb0fcf56b98861..f67dc8575013c0b18ca38a286833947bd09e52bc 100644 --- a/app/components/BookBuilder/Chapter/AlignmentBox.jsx +++ b/app/components/BookBuilder/Chapter/AlignmentBox.jsx @@ -14,8 +14,14 @@ class AlignmentBox extends React.Component { if (!includes(['left', 'right'], position)) return - chapter.alignment[position] = !chapter.alignment[position] - update(chapter) + const patch = { + alignment: chapter.alignment, + id: chapter.id + } + + patch.alignment[position] = !chapter.alignment[position] + + update(patch) } render () {