Skip to content
Snippets Groups Projects
Commit aafa2f5c authored by Guilhem CARRON's avatar Guilhem CARRON
Browse files

fix: hide unknown mail from structure list

parent 18698d59
No related branches found
No related tags found
3 merge requests!418V2.1.0,!402fix: hideunknown mail from structure list,!400V2.0
...@@ -92,7 +92,11 @@ ...@@ -92,7 +92,11 @@
<div class="sectionContent infoSection"> <div class="sectionContent infoSection">
<p>{{ getAddress() }}</p> <p>{{ getAddress() }}</p>
<p>{{ structure.contactPhone }}</p> <p>{{ structure.contactPhone }}</p>
<a class="email" href="mailto:{{ structure.contactMail }}"> <a
*ngIf="structure.contactMail !== 'unknown@unknown.com'"
class="email"
href="mailto:{{ structure.contactMail }}"
>
{{ structure.contactMail }} {{ structure.contactMail }}
</a> </a>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment