diff --git a/frontend/src/components/history/HistoryDisplay.tsx b/frontend/src/components/history/HistoryDisplay.tsx index 216e5bb..c13de1e 100644 --- a/frontend/src/components/history/HistoryDisplay.tsx +++ b/frontend/src/components/history/HistoryDisplay.tsx @@ -54,7 +54,7 @@ export default function HistoryDisplay({ >

{displayHistoryItemType(item.type)}

- {item.parentIndex && item.parentIndex !== index - 1 ? ( + {item.parentIndex !== null && item.parentIndex !== index - 1 ? (

(parent: v{(item.parentIndex || 0) + 1})