Skip to content
Snippets Groups Projects

fix: hideunknown mail from structure list

Merged Guilhem CARRON requested to merge fix/display-mail-unknown into dev
1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
@@ -92,7 +92,11 @@
<div class="sectionContent infoSection">
<p>{{ getAddress() }}</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 }}
</a>
</div>
Loading