We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03be784 commit 6bbe7f4Copy full SHA for 6bbe7f4
plugins/Bookmark.jsx
@@ -110,7 +110,13 @@ class Bookmark extends React.Component {
110
"bookmark-list-item-active": this.state.currentBookmark === bookmark.key
111
});
112
return (
113
- <div className={itemclasses} key={bookmark.key} onClick={() => this.toggleCurrentBookmark(bookmark)} title={lastUpdateTitle + ": " + bookmark.date}>{bookmark.description}</div>
+ <div className={itemclasses} key={bookmark.key}
114
+ onClick={() => this.toggleCurrentBookmark(bookmark)}
115
+ onDoubleClick={() => this.open(bookmark.key, false)}
116
+ title={lastUpdateTitle + ": " + bookmark.date}
117
+ >
118
+ {bookmark.description}
119
+ </div>
120
);
121
})}
122
{isEmpty(this.state.bookmarks) ? (
0 commit comments