changeset 5738:39444dccfff7

Orthanc Explorer: clarify download of attachments
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Aug 2024 15:13:30 +0200
parents 2fe77dfe0466
children 66c3ca832741
files OrthancServer/OrthancExplorer/explorer.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/OrthancServer/OrthancExplorer/explorer.js	Thu Aug 01 19:44:48 2024 +0200
+++ b/OrthancServer/OrthancExplorer/explorer.js	Fri Aug 16 15:13:30 2024 +0200
@@ -715,7 +715,7 @@
     $('.' + liClass).remove();
     for (var key in attachments) {
       if (attachments[key] >= 1024) {
-        target.append('<li data-icon="gear" class="' + liClass + '"><a href="#" id="' + attachments[key] + '">Download ' + key + '</a></li>')
+        target.append('<li data-icon="gear" class="' + liClass + '"><a href="#" id="' + attachments[key] + '">Download attachment "' + key + '"</a></li>')
       }
     }
     target.listview('refresh');