Skip to content

Commit

Permalink
style: delimit array of extra props values with semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 16, 2023
1 parent ebd938c commit aeca5a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/components/Provenance/Tables/ExtraPropertiesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const ExtraPropertiesTable = ({ extraProperties }: ExtraPropertiesTableProps) =>
render: (_, { values }) =>
values.map((v, i) => (
<>
<LinkIfUrl key={i} text={v.value.toString()} />{' '}
<LinkIfUrl key={i} text={v.value.toString()} />
{i < values.length - 1 ? '; ' : ''}
</>
)),
},
Expand Down

0 comments on commit aeca5a5

Please sign in to comment.