diff options
Diffstat (limited to 'apps/files_trashbin/src/filelist.js')
-rw-r--r-- | apps/files_trashbin/src/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/src/filelist.js b/apps/files_trashbin/src/filelist.js index 60b44ea7541..d499c108711 100644 --- a/apps/files_trashbin/src/filelist.js +++ b/apps/files_trashbin/src/filelist.js @@ -78,7 +78,7 @@ * user friendly name. */ this.breadcrumb._makeCrumbs = function() { - var parts = OCA.Files.BreadCrumb.prototype._makeCrumbs.apply(this, arguments) + var parts = OCA.Files.BreadCrumb.prototype._makeCrumbs.apply(this, [...arguments, 'icon-delete no-hover']) for (var i = 1; i < parts.length; i++) { parts[i].name = getDeletedFileName(parts[i].name) } |