diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-03 08:28:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 08:28:26 +0100 |
commit | f159d8d8351e9200788fba65e0d4735563b49727 (patch) | |
tree | 7c889edc48b0f1e3344a06072ef7042947d92aef /apps/files/templates | |
parent | db9b14733c1d320f5bee7ac2d63966196f80c358 (diff) | |
parent | c500b197622e7524b1e6bd250cbc65145ccccda4 (diff) | |
download | nextcloud-server-f159d8d8351e9200788fba65e0d4735563b49727.tar.gz nextcloud-server-f159d8d8351e9200788fba65e0d4735563b49727.zip |
Merge pull request #7634 from Abijeet/bug-7539
Fixes the delete button not appearing on certain lower resolutions
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/list.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 92f64a52a28..fd5423c334f 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -59,6 +59,10 @@ <span class="icon icon-download"></span> <span><?php p($l->t('Download'))?></span> </a> + <a href="" class="delete-selected"> + <span class="icon icon-delete"></span> + <span><?php p($l->t('Delete'))?></span> + </a> </span> </div> </th> |