diff --git a/services/web/frontend/js/features/project-list/components/dropdown/actions-dropdown.tsx b/services/web/frontend/js/features/project-list/components/dropdown/actions-dropdown.tsx index 386dfbcb4e..ca861c499c 100644 --- a/services/web/frontend/js/features/project-list/components/dropdown/actions-dropdown.tsx +++ b/services/web/frontend/js/features/project-list/components/dropdown/actions-dropdown.tsx @@ -78,8 +78,7 @@ function ActionsDropdown({ project }: ActionDropdownProps) { )} - {project.compiler === 'quarto' && - project.quartoFlavor === 'revealjs' ? ( + {project.compiler === 'quarto' ? ( {(startExport, exporting) => ( <> diff --git a/services/web/frontend/js/features/project-list/components/table/cells/action-buttons/download-presentation-button.tsx b/services/web/frontend/js/features/project-list/components/table/cells/action-buttons/download-presentation-button.tsx index f8853d42ab..d6f86ec2f7 100644 --- a/services/web/frontend/js/features/project-list/components/table/cells/action-buttons/download-presentation-button.tsx +++ b/services/web/frontend/js/features/project-list/components/table/cells/action-buttons/download-presentation-button.tsx @@ -138,7 +138,7 @@ const DownloadPresentationButtonTooltip = memo( }: { project: Project }) { const { t } = useTranslation() - if (project.compiler !== 'quarto' || project.quartoFlavor !== 'revealjs') { + if (project.compiler !== 'quarto') { return null } diff --git a/services/web/frontend/js/features/project-list/components/table/cells/actions-cell.tsx b/services/web/frontend/js/features/project-list/components/table/cells/actions-cell.tsx index 1934684c04..5affa2874f 100644 --- a/services/web/frontend/js/features/project-list/components/table/cells/actions-cell.tsx +++ b/services/web/frontend/js/features/project-list/components/table/cells/actions-cell.tsx @@ -15,7 +15,7 @@ type ActionsCellProps = { } const isQuartoSlides = (project: Project) => - project.compiler === 'quarto' && project.quartoFlavor === 'revealjs' + project.compiler === 'quarto' export default function ActionsCell({ project }: ActionsCellProps) { return (