|
@@ -1985,7 +1985,7 @@ export function FileManagerPage() {
|
|
|
file={file}
|
|
file={file}
|
|
|
isSelected={selectedFiles.includes(file.id)}
|
|
isSelected={selectedFiles.includes(file.id)}
|
|
|
isMobile={isMobile}
|
|
isMobile={isMobile}
|
|
|
- showPrintScheduleButtons={selectedFiles.length === 1}
|
|
|
|
|
|
|
+ showPrintScheduleButtons={selectedFiles.includes(file.id) && selectedFiles.length === 1}
|
|
|
t={t}
|
|
t={t}
|
|
|
onSelect={handleFileSelect}
|
|
onSelect={handleFileSelect}
|
|
|
onDelete={(id) => setDeleteConfirm({ type: 'file', id })}
|
|
onDelete={(id) => setDeleteConfirm({ type: 'file', id })}
|