From 60f54572f04def63dffec65c8ba5f5ea9815da3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20P=C5=82aczek?= Date: Mon, 12 Aug 2024 00:14:00 +0100 Subject: [PATCH] Update src/components/ApiHistoryTable.tsx Co-authored-by: David Sanders --- src/components/ApiHistoryTable.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/ApiHistoryTable.tsx b/src/components/ApiHistoryTable.tsx index 728f133c4..c9db540e9 100644 --- a/src/components/ApiHistoryTable.tsx +++ b/src/components/ApiHistoryTable.tsx @@ -25,8 +25,7 @@ function generateTableRow( type: Change, change: NonNullable[0] ) { - const prNumber = Number(change['pr-url'].split('/').at(-1)); - const key = prNumber + '-' + type; + const key = change['pr-url'] + '-' + type; const allVersions: Array = [];