Fix Bug 57234: delete owner and author of correction url

This commit is contained in:
Viktor Fomin 2022-05-19 13:37:52 +03:00
parent a8d35b2a56
commit dd68c9d89d

View File

@ -108,10 +108,12 @@ const SingleItem = (props) => {
{
id: "Owner",
title: t("Common:Owner"),
content: styledLink(
item.createdBy?.displayName,
item.createdBy?.profileUrl
),
content: personal
? styledText(item.createdBy?.displayName)
: styledLink(
item.createdBy?.displayName,
item.createdBy?.profileUrl
),
},
// {
// id: "Location",
@ -136,10 +138,12 @@ const SingleItem = (props) => {
{
id: "LastModifiedBy",
title: t("LastModifiedBy"),
content: styledLink(
item.updatedBy?.displayName,
item.updatedBy?.profileUrl
),
content: personal
? styledText(item.updatedBy?.displayName)
: styledLink(
item.updatedBy?.displayName,
item.updatedBy?.profileUrl
),
},
{
id: "ByCreationDate",