mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00:00
FIX: Incorrect URL for bookmark quick action menu (#16932)
The bookmarkable_type instead of the bookmarkable_url was being used for the link to the bookmark for the quick access menu, leading to links like /ChatMessage. This fixes the issue, follow up PR with tests for the quick access menu to follow.
This commit is contained in:
parent
d001093f83
commit
ac59168dde
@ -62,7 +62,7 @@ createWidgetFrom(QuickAccessPanel, "quick-access-bookmarks", {
|
||||
) {
|
||||
href = postUrl(bookmark.slug, bookmark.topic_id, postNumber);
|
||||
} else {
|
||||
href = bookmark.bookmarkable_type;
|
||||
href = bookmark.bookmarkable_url;
|
||||
}
|
||||
|
||||
return this.attach("quick-access-item", {
|
||||
|
Loading…
x
Reference in New Issue
Block a user