Skip to content
Snippets Groups Projects
Commit 1224d2ce authored by Alexandros Georgantas's avatar Alexandros Georgantas
Browse files

Merge branch '122-anonymous-author-in-dashboard' into 'master'

anonymous usernames

Closes #122

See merge request xpub!103
parents 3b6d85c0 fe1e521e
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ const MetadataOwners = ({ owners }) => ( ...@@ -4,7 +4,7 @@ const MetadataOwners = ({ owners }) => (
<span> <span>
{owners.map((owner, index) => [ {owners.map((owner, index) => [
index === 0 ? null : <span>, </span>, index === 0 ? null : <span>, </span>,
<span>{owner.name || 'Anonymous'}</span>, <span>{owner.username || 'Anonymous'}</span>,
])} ])}
</span> </span>
) )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment