Merge pull request #299 from EdouardVanbelle/fixes

This commit is contained in:
Dionisio Pozo
2026-04-16 06:00:26 +02:00
committed by GitHub
5 changed files with 9 additions and 5 deletions
+3
View File
@@ -42,6 +42,9 @@
padding: 10px 20px;
border-radius: 12px;
overflow: hidden;
margin-right: 12px;
height: 60px;
transform: translateY(-8px);
transition:
opacity 0.2s,
max-height 0.25s,
-1
View File
@@ -12,7 +12,6 @@ export const app = {
contextMenuTargetFile: null,
selectedTargetFolderId: '',
moveDialogMode: 'file',
currentSection: null, // will be defined on first call
isSearchMode: false,
shareDialogItem: null,
-3
View File
@@ -1309,9 +1309,6 @@ const ui = {
filesList.classList.remove('hidden');
filesContainerError?.classList.add('hidden');
// apply hook as header changed
multiSelect.init();
},
showEmptyList() {
+1 -1
View File
@@ -256,7 +256,7 @@ const multiSelect = {
// Sync individual item checkboxes
this._syncItemCheckboxes();
// Sync select-all checkbox state (for non-selection-mode)
if (!this._barVisible) this._syncSelectAllCheckbox();
this._syncSelectAllCheckbox();
},
/** Wire click handlers on batch action buttons (idempotent per render) */
+5
View File
@@ -9,6 +9,7 @@
import { ui } from '../../app/ui.js';
import { getCsrfHeaders } from '../../core/csrf.js';
import { i18n } from '../../core/i18n.js';
import { multiSelect } from '../files/multiSelect.js';
const favorites = {
/** @type {Map<string, object>} key = "file:<id>" | "folder:<id>" */
@@ -172,6 +173,10 @@ const favorites = {
}
ui.resetFilesList(); // ensure also list visible & error hidden
// wire buttons & select-all-checkbox as list header has changed in ui.resetFilesList()
// FIXME: this case is not easy to understand, should apply better implementation
multiSelect.init();
ui.updateBreadcrumb('');
if (this._cache.size === 0) {