Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4927 from brave/bookmark-pulldown-disappearing
Browse files Browse the repository at this point in the history
URL input field on the bookmark pulldown disappears
  • Loading branch information
bbondy authored Oct 19, 2016
2 parents 3840430 + 8bad71b commit fc14b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/components/addEditBookmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ class AddEditBookmark extends ImmutableComponent {
currentDetail = currentDetail.set('customTitle', e.target.value)
}

windowActions.setBookmarkDetail(currentDetail, this.props.originalDetail, this.props.destinationDetail)
windowActions.setBookmarkDetail(currentDetail, this.props.originalDetail, this.props.destinationDetail, this.props.shouldShowLocation)
}
onLocationChange (e) {
const currentDetail = this.props.currentDetail.set('location', e.target.value)
windowActions.setBookmarkDetail(currentDetail, this.props.originalDetail, this.props.destinationDetail)
windowActions.setBookmarkDetail(currentDetail, this.props.originalDetail, this.props.destinationDetail, this.props.shouldShowLocation)
}
onParentFolderChange (e) {
const currentDetail = this.props.currentDetail.set('parentFolderId', Number(e.target.value))
Expand Down

0 comments on commit fc14b2e

Please sign in to comment.