-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use correct ejs syntax AB#26923
- Loading branch information
Showing
3 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
services/API-service/src/api/notification/email/html/map-image.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
<br /> | ||
<b>Map of the triggered area(<%= eventName %>):</b> (click 'Download pictures' | ||
if it does not show) | ||
<b>Map of the triggered area <%- eventName %></b> | ||
<br /> | ||
<%= mapImgDescription %> | ||
<img src="<%= mapImgSrc %>" width="600" /> | ||
<%- mapImgDescription %> | ||
<img | ||
src="<%= mapImgSrc %>" | ||
width="600" | ||
alt="click 'Download pictures' if it does not show" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters