diff options
Diffstat (limited to 'apps/files/js/fileactions.js')
-rw-r--r-- | apps/files/js/fileactions.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 9412e510a54..b335f1f6432 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -247,8 +247,9 @@ html += '<img class="svg" alt="" src="' + img + '" />'; } if (actionSpec.displayName) { - html += '<span> ' + actionSpec.displayName + '</span></a>'; + html += '<span> ' + actionSpec.displayName + '</span>'; } + html += '</a>'; return $(html); }, |