We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e41747 commit 9c8a5beCopy full SHA for 9c8a5be
2 files changed
CHANGELOG.rst
@@ -2,6 +2,12 @@
2
CHANGELOG
3
=========
4
5
+unreleased
6
+==========
7
+
8
+* Ensure action buttons in directory listing do not get disabled after using
9
+ cancel or back button if files or folders are selected.
10
11
3.0.1 (2023-07-13)
12
==================
13
filer/static/filer/js/base.js
@@ -91,6 +91,12 @@ Cl.mediator = new Mediator();
91
92
// timeout is needed to wait until table row has class selected.
93
setTimeout(function () {
94
+ // Set classes for checked items
95
+ actionSelect.each(function (no, el) {
96
+ if (el.checked) {
97
+ el.closest('.list-item').classList.add('selected');
98
+ }
99
+ });
100
if (navigatorTable.hasClass('selected')) {
101
actionList.addClass('action-selected');
102
}
0 commit comments