diff --git a/src/devhub/components/atom/Tag.jsx b/src/devhub/components/atom/Tag.jsx index a1d3423a2..d4a8d3216 100644 --- a/src/devhub/components/atom/Tag.jsx +++ b/src/devhub/components/atom/Tag.jsx @@ -1,5 +1,7 @@ +const black = props.black; + const Span = styled.span` - color: #00ec97; + color: ${black ? "#818181" : "#00ec97"}; font-size: 16px; font-style: normal; font-weight: 700; diff --git a/src/devhub/components/molecule/ProfileCard.jsx b/src/devhub/components/molecule/ProfileCard.jsx index 798db01b2..3c4f5f1eb 100644 --- a/src/devhub/components/molecule/ProfileCard.jsx +++ b/src/devhub/components/molecule/ProfileCard.jsx @@ -50,6 +50,9 @@ const ProfileCard = (props) => { /> )}
+ {props.communityName && ( + /{props.communityName} • + )} Posted by {name} @{accountId} diff --git a/src/devhub/components/organism/Navbar.jsx b/src/devhub/components/organism/Navbar.jsx index 3be79df22..96505b71d 100644 --- a/src/devhub/components/organism/Navbar.jsx +++ b/src/devhub/components/organism/Navbar.jsx @@ -156,7 +156,7 @@ const links = [ { title: "/about", links: [ - { title: "mission", href: "about" }, + { title: "mission", href: "mission" }, { title: "blog", href: "blog" }, { title: "newsletter", href: "newsletter" }, { title: "calendar", href: "calendar" }, diff --git a/src/devhub/entity/community/Activity.jsx b/src/devhub/entity/community/Activity.jsx index cca47586e..2a28ca2f4 100644 --- a/src/devhub/entity/community/Activity.jsx +++ b/src/devhub/entity/community/Activity.jsx @@ -17,8 +17,6 @@ if (communityData === null) { return
Loading...
; } -console.log(communityData.tag); - return (
@@ -29,6 +27,7 @@ return ( props={{ hideHeader: true, tag: communityData.tag, + communityName: communityData.name, children: (
diff --git a/src/devhub/entity/post/Post.jsx b/src/devhub/entity/post/Post.jsx index 11d3787a4..c7c0cc620 100644 --- a/src/devhub/entity/post/Post.jsx +++ b/src/devhub/entity/post/Post.jsx @@ -158,18 +158,16 @@ const header = (
-
+
{permissions.can_configure && ( )} + setLinkCopied(false), + title: "Copy link to clipboard", + }} + />
@@ -247,41 +279,10 @@ return ( ) )} -
- setLinkCopied(false), - title: "Copy link to clipboard", - }} - /> - +
Required tags: @@ -300,6 +301,23 @@ return (
+ {context.accountId && ( + + )}
{currentTab && (