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

Remove selected categories from category list #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

puripant
Copy link

@puripant puripant commented Oct 1, 2016

Should fix #19

@@ -43,7 +43,7 @@ module.exports = (m, api, conversation, apiUserId) => {
function tagReplies(context){
let tags = [ m.createQuickReplyButton( context.__('#done'), 'isEnding' ) ];

let categoryTags = _.map( categories, cat => {
let categoryTags = _.map( categories.filter( cat => context.hashtags.indexOf(cat) < 0 ), cat => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think context.hastags is language dependent, and you will need this instead:

cat => context.hashtags.indexOf(context.__(cat)) < 0

Also, you might need to reformat it to avoid lint error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Chosen categories should not reappear in the category list
3 participants