Removed keys and inbox flagging (#9776)

This commit is contained in:
Keith Holliday
2018-01-09 12:58:01 -06:00
committed by GitHub
parent c1f6f0398e
commit 3000e2b72c
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ div
.svg-icon(v-html="icons.copy")
| {{$t('copyAsTodo')}}
// @TODO make copyAsTodo work in the inbox
span.action(v-if='user.flags.communityGuidelinesAccepted && msg.uuid !== "system"', @click='report(msg)')
span.action(v-if='!inbox && user.flags.communityGuidelinesAccepted && msg.uuid !== "system"', @click='report(msg)')
.svg-icon(v-html="icons.report")
| {{$t('report')}}
// @TODO make flagging/reporting work in the inbox. NOTE: it must work even if the communityGuidelines are not accepted and it MUST work for messages that you have SENT as well as received. -- Alys