diff --git a/src/js/components/Provenance/Tables/ExtraPropertiesTable.tsx b/src/js/components/Provenance/Tables/ExtraPropertiesTable.tsx
index 979167b8..1cecb2ed 100644
--- a/src/js/components/Provenance/Tables/ExtraPropertiesTable.tsx
+++ b/src/js/components/Provenance/Tables/ExtraPropertiesTable.tsx
@@ -21,7 +21,8 @@ const ExtraPropertiesTable = ({ extraProperties }: ExtraPropertiesTableProps) =>
render: (_, { values }) =>
values.map((v, i) => (
<>
- {' '}
+
+ {i < values.length - 1 ? '; ' : ''}
>
)),
},