From b78845a9269920dcab3ef09ef3f5f8756efc4bcd Mon Sep 17 00:00:00 2001 From: claude Date: Tue, 16 Jun 2026 21:08:43 +0000 Subject: [PATCH] fix: show presentation export dropdown on Lumiere tiles for Quarto projects ProjectCard in the Lumiere tile view always showed CompileAndDownloadProjectPDFButtonTooltip, ignoring the project compiler. Quarto presentation projects need the DownloadPresentationButtonTooltip (HTML/PDF dropdown) instead, matching the logic already in actions-cell.tsx and actions-dropdown.tsx. Co-Authored-By: Claude Sonnet 4.6 --- .../project-list/components/project-list-lumiere.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx index 33e656c9fd..ccb44c0fba 100644 --- a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx +++ b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx @@ -25,6 +25,7 @@ import OLFormCheckbox from '@/shared/components/ol/ol-form-checkbox' import { CopyProjectButtonTooltip } from './table/cells/action-buttons/copy-project-button' import { DownloadProjectButtonTooltip } from './table/cells/action-buttons/download-project-button' import { CompileAndDownloadProjectPDFButtonTooltip } from './table/cells/action-buttons/compile-and-download-project-pdf-button' +import { DownloadPresentationButtonTooltip } from './table/cells/action-buttons/download-presentation-button' import { ArchiveProjectButtonTooltip } from './table/cells/action-buttons/archive-project-button' import { TrashProjectButtonTooltip } from './table/cells/action-buttons/trash-project-button' import FormatCell from './table/cells/format-cell' @@ -173,7 +174,11 @@ const ProjectCard = memo(function ProjectCard({
- + {project.compiler === 'quarto' ? ( + + ) : ( + + )}