UX: Allow claim of topic via posts

This commit is contained in:
Robin Ward 2018-01-15 12:43:32 -05:00
parent 2394cf1d75
commit d39c19c166
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1 @@
{{#if actableFilter}}
{{claim-topic topic=flaggedPost.topic}}
{{/if}}
{{claim-topic topic=flaggedPost.topic}}

View File

@ -0,0 +1,5 @@
export default {
shouldRender(args) {
return args.actableFilter && !args.topic;
}
};