swap own badge and want badge
This commit is contained in:
parent
444887b64f
commit
3ce5e74b09
1 changed files with 19 additions and 14 deletions
|
@ -135,20 +135,11 @@ function UserItemsPage() {
|
|||
Neomail
|
||||
</Badge>
|
||||
)}
|
||||
{numYouOwnThisBadges > 0 && (
|
||||
<Badge
|
||||
as="a"
|
||||
href="#wanted-items"
|
||||
colorScheme="green"
|
||||
display="flex"
|
||||
alignItems="center"
|
||||
>
|
||||
<CheckIcon marginRight="1" />
|
||||
{numYouOwnThisBadges > 1
|
||||
? `${numYouOwnThisBadges} items you own`
|
||||
: "1 item you own"}
|
||||
</Badge>
|
||||
)}
|
||||
{/* Usually I put "Own" before "Want", but this matches the natural
|
||||
* order on the page: the _matches_ for things you want are things
|
||||
* _this user_ owns, so they come first. I think it's also probably a
|
||||
* more natural train of thought: you come to someone's list _wanting_
|
||||
* something, and _then_ thinking about what you can offer. */}
|
||||
{numYouWantThisBadges > 0 && (
|
||||
<Badge
|
||||
as="a"
|
||||
|
@ -163,6 +154,20 @@ function UserItemsPage() {
|
|||
: "1 item you want"}
|
||||
</Badge>
|
||||
)}
|
||||
{numYouOwnThisBadges > 0 && (
|
||||
<Badge
|
||||
as="a"
|
||||
href="#wanted-items"
|
||||
colorScheme="green"
|
||||
display="flex"
|
||||
alignItems="center"
|
||||
>
|
||||
<CheckIcon marginRight="1" />
|
||||
{numYouOwnThisBadges > 1
|
||||
? `${numYouOwnThisBadges} items you own`
|
||||
: "1 item you own"}
|
||||
</Badge>
|
||||
)}
|
||||
</Wrap>
|
||||
<Heading2 id="owned-items" marginTop="4" marginBottom="6">
|
||||
{isCurrentUser ? "Items you own" : `Items ${data.user.username} owns`}
|
||||
|
|
Loading…
Reference in a new issue