From d553863e3fba998622dddb8d8c7fd6ac3fc52651 Mon Sep 17 00:00:00 2001 From: Alexandre Bourdin Date: Wed, 12 Oct 2022 16:19:26 +0200 Subject: [PATCH] Merge pull request #9945 from overleaf/ii-last-updated-date-by-translation-unescape-fix [web] Fix "last updated date by" translation GitOrigin-RevId: 110974ae69a0471c6988c7dea852fac93ce6bb0d --- .../project-list/components/table/cells/last-updated-cell.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 d1e5d05de4..e1c826bb3d 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 @@ -16,7 +16,8 @@ export default function LastUpdatedCell({ project }: LastUpdatedCellProps) { lastUpdatedDate: fromNowDate(project.lastUpdated), person: getUserName(project.lastUpdatedBy), }} - shouldUnescape + // eslint-disable-next-line react/jsx-boolean-value + shouldUnescape={true} /> ) : ( fromNowDate(project.lastUpdated)