From c7460a12eae5a1b60a0e466610aa751355a2c6e1 Mon Sep 17 00:00:00 2001 From: jessop Date: Wed, 7 Aug 2019 21:39:03 -0400 Subject: [PATCH] mature tag first to display --- src/ui/component/claimTags/view.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ui/component/claimTags/view.jsx b/src/ui/component/claimTags/view.jsx index 7e5b20401..d5a4dced8 100644 --- a/src/ui/component/claimTags/view.jsx +++ b/src/ui/component/claimTags/view.jsx @@ -18,6 +18,11 @@ export default function ClaimTags(props: Props) { const numberOfTags = type === 'small' ? SLIM_TAGS : type === 'large' ? LARGE_TAGS : NORMAL_TAGS; let tagsToDisplay = []; + + if (tags.includes('mature')) { + tagsToDisplay.push('mature'); + } + for (var i = 0; tagsToDisplay.length < numberOfTags - 2; i++) { const tag = followedTags[i]; if (!tag) {