Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #160 from nextcloud/backport/157/stable24
Browse files Browse the repository at this point in the history
[stable24] fix-right-click multiselect in trash bin
  • Loading branch information
szaimen authored Mar 23, 2023
2 parents 7d3881d + 1a2c4e3 commit d65aeee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
$(currentFile.find('input.selectCheckBox')).click();
});

$.each($('.selectedActions .menu-center li:not(.hidden)'), function (i, selectedAction) {
$.each($('.selectedActions:not(.hidden) .menu-center li:not(.hidden)'), function (i, selectedAction) {
var action = $(selectedAction);

addNewOption(action.attr('class'), $(action.find('span.icon')).attr('class').replace('icon', '').replace(' ', '').replace('icon-', ''), $(action.find('span:not(.icon)')).text(), function () {
Expand Down

0 comments on commit d65aeee

Please sign in to comment.