1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00

escaping attachments

This commit is contained in:
antelle 2020-05-09 16:14:43 +02:00
parent 15c81d8f35
commit 3735a6689c
No known key found for this signature in database
GPG Key ID: 094A2F2D6136A4EE

View File

@ -32,7 +32,7 @@
<td>{{res 'detAttachments'}}</td> <td>{{res 'detAttachments'}}</td>
<td> <td>
{{#each attachments as |attachment|}} {{#each attachments as |attachment|}}
<a href="{{{attachment.data}}}" download="{{attachment.name}}">{{attachment.name}}</a> <a href="{{attachment.data}}" download="{{attachment.name}}">{{attachment.name}}</a>
{{~#unless @last}},&nbsp;{{/unless}} {{~#unless @last}},&nbsp;{{/unless}}
{{/each}} {{/each}}
</td> </td>