Skip to content

Commit

Permalink
fix(studio): don't show reselection of checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
asashour committed Jan 9, 2020
1 parent 3c76e50 commit 23fd495
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@ class ContentPickerWidget extends Component<Props> {
const { contentType } = contentItem
await this.props
.upsertContentItem({ modifyId: itemId, contentType, formData: this.state.contentToEdit })
.then(() => this.setState({ showItemEdit: false, contentToEdit: null }))
.then(() => this.setState({ showItemEdit: false }))
.then(() => this.props.fetchContentItem(this.props.itemId, { force: true }))
.then(this.props.refresh || (() => {}))
.then(this.props.onUpdate || (() => {}))
Expand Down

0 comments on commit 23fd495

Please sign in to comment.