Skip to content

Commit

Permalink
add blockpack to Show Originals locations
Browse files Browse the repository at this point in the history
  • Loading branch information
marcustyphoon committed Apr 29, 2024
1 parent dd66389 commit 67c166e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/show_originals.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ const getLocation = timelineElement => {
dashboard: timeline === '/v2/timeline/dashboard',
disabled: isBlog && disabledBlogs.some(name => timeline === `/v2/blog/${name}/posts`),
peepr: isBlog,
blogSubscriptions: timeline.includes('blog_subscriptions') || which === 'blog_subscriptions'
blogSubscriptions: timeline.includes('blog_subscriptions') || which === 'blog_subscriptions',
blogpack: timeline.includes('blogpack') || which === 'blogpack'
};
return Object.keys(on).find(location => on[location]);
};
Expand Down

0 comments on commit 67c166e

Please sign in to comment.