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

Commit

Permalink
Fix bookmark title not working in add/edit bookmark
Browse files Browse the repository at this point in the history
Auditors: @bsclifton

Fix #5055
  • Loading branch information
bbondy committed Oct 22, 2016
1 parent bf5a6b9 commit 4fdacd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/components/addEditBookmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class AddEditBookmark extends ImmutableComponent {

return this.isFolder
? (typeof title === 'string' && title.trim().length > 0)
: (typeof title === 'string' && location.trim().length > 0)
: (typeof location === 'string' && location.trim().length > 0)
}

get isFolder () {
Expand Down

0 comments on commit 4fdacd5

Please sign in to comment.