diff --git a/services/web/frontend/js/features/project-list/components/table/cells/last-updated-by.tsx b/services/web/frontend/js/features/project-list/components/table/cells/last-updated-by.tsx
index 1d5aa5c0ea..18a029a70e 100644
--- a/services/web/frontend/js/features/project-list/components/table/cells/last-updated-by.tsx
+++ b/services/web/frontend/js/features/project-list/components/table/cells/last-updated-by.tsx
@@ -12,11 +12,11 @@ export const LastUpdatedBy: FC<{
const userName = getUserName(lastUpdatedBy)
return (
-
+ <>
{t('last_updated_date_by_x', {
lastUpdatedDate,
person: userName === 'You' ? t('you') : userName,
})}
-
+ >
)
}
diff --git a/services/web/frontend/js/features/project-list/components/table/cells/last-updated-cell.tsx b/services/web/frontend/js/features/project-list/components/table/cells/last-updated-cell.tsx
index f44021ba34..953a3c572c 100644
--- a/services/web/frontend/js/features/project-list/components/table/cells/last-updated-cell.tsx
+++ b/services/web/frontend/js/features/project-list/components/table/cells/last-updated-cell.tsx
@@ -19,10 +19,12 @@ export default function LastUpdatedCell({ project }: LastUpdatedCellProps) {
overlayProps={{ placement: 'top', trigger: ['hover', 'focus'] }}
>
{project.lastUpdatedBy ? (
-
+
+
+
) : (
{lastUpdatedDate}
)}