Skip to content
Snippets Groups Projects
Commit 90734e2f authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon:
Browse files

Add marking to qualified signature activity too

parent 1f53ee75
No related branches found
No related tags found
No related merge requests found
...@@ -892,12 +892,12 @@ class QualifiedSignaturePdfUpload extends ScopedElementsMixin(DBPSignatureLitEle ...@@ -892,12 +892,12 @@ class QualifiedSignaturePdfUpload extends ScopedElementsMixin(DBPSignatureLitEle
const file = this.signedFiles[id]; const file = this.signedFiles[id];
results.push(html` results.push(html`
<div class="file-block"> <div class="file-block" id="file-block-${id}">
<div class="header"> <div class="header">
<span class="filename"><strong>${file.name}</strong> (${humanFileSize(file.contentSize)})</span> <span class="filename"><strong>${file.name}</strong> (${humanFileSize(file.contentSize)})</span>
<button class="button close" <button class="button close"
title="${i18n.t('qualified-pdf-upload.download-file-button-title')}" title="${i18n.t('qualified-pdf-upload.download-file-button-title')}"
@click="${() => { this.downloadFileClickHandler(file); }}"> @click="${() => { this.downloadFileClickHandler(file, 'file-block-' + id); }}">
<dbp-icon name="download"></dbp-icon></button> <dbp-icon name="download"></dbp-icon></button>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment