Skip to content

Commit

Permalink
Merge pull request #34 from IMIO/WEB-3986
Browse files Browse the repository at this point in the history
WEB-3986 : Fix : email must be open thank to "mailto:" tag instead of "tel:"
  • Loading branch information
thomlamb committed Sep 13, 2023
2 parents 7882b8c + 67d94f6 commit 93c193d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changelog
1.1.24 (unreleased)
-------------------

- WEB-3986 : Fix : email must be open thank to "mailto:" tag instead of "tel:"
[boulch]

- WEB-3984 : Remove deprecated cropping annotations on banner
[boulch, laulaz]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
</span>
</div>
<div className="r-content-news-info--email">
<a href={`tel:${contactItem.contact_email}`}>
<a href={`mailto:${contactItem.contact_email}`}>
{contactItem.contact_email}
</a>
</div>
Expand Down

0 comments on commit 93c193d

Please sign in to comment.