Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for comments on non-SO sites #293

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/popover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ export class Popover {
// id === 4 => Duplicate Answer
&& (id === 4 ? repost : !repost);

// show the red flags and general items on every site,
// show the red flags, general, and answer-related items on every site,
// restrict the others to Stack Overflow
const showOnSo = ['Red flags', 'General'].includes(belongsTo) || Page.isStackOverflow;
const showOnSo = ['Red flags', 'General', 'Answer-related'].includes(belongsTo) || Page.isStackOverflow;

return enabled && (isGuttenbergItem ? showGutReport : showOnSo);
})
Expand Down Expand Up @@ -158,8 +158,8 @@ export class Popover {
return config
// hide delete checkbox when user can't delete vote
.filter(([ text ]) => {
if (text === 'Leave comment') return Page.isStackOverflow;
else if (text === 'Delete') return this.post.canDelete;
// if (text === 'Leave comment') return Page.isStackOverflow;
if (text === 'Delete') return this.post.canDelete;

return true;
})
Expand Down