Skip to content

Commit

Permalink
Merge pull request #44 from elisa-tech/fix-document-link
Browse files Browse the repository at this point in the history
Fix document url, it was a string instead of a variable
  • Loading branch information
pellecchialuigi authored Sep 13, 2024
2 parents 952bb49 + 0c9c2b6 commit cb812dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/app/Mapping/MappingListingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ const MappingListingTable: React.FunctionComponent<MappingListingTableProps> = (
<TextContent>
<Text className='work-item-detail-document-url'>
<b>Url:</b>{' '}
<a target='_blank' href="{mappedItem[Constants._D]['url']}">
<a target='_blank' href={mappedItem[Constants._D]['url']}>
{mappedItem[Constants._D]['url']}
</a>
</Text>
Expand Down

0 comments on commit cb812dc

Please sign in to comment.