diff --git a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx index 52c8d98a97..f91fc34c58 100644 --- a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx +++ b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx @@ -79,7 +79,7 @@ const columns: TableColumn[] = [ width: 'auto', render: (row: Partial) => DateTime.fromISO( - row.creationDate ? row.creationDate.toString() : new Date().toString(), + (row.creationDate ?? new Date()).toString(), ).toRelative(), }, ];