adding side menu for download option (#33307)

* adding side menu for download option

* fixing the E2E tests to adapt the new behaviour

GitOrigin-RevId: d96df4906a40006d36ac0ea525d74a1644ec4085
This commit is contained in:
Davinder Singh
2026-04-30 15:18:12 +01:00
committed by Copybot
parent 2ebe0bd513
commit 30e0e6adaf
2 changed files with 14 additions and 2 deletions

View File

@@ -87,14 +87,24 @@ export const ToolbarMenuBar = () => {
{ id: 'submit', children: ['submit-project', 'manage-template'] },
{
id: 'file-download',
children: ['download-as-source-zip', 'download-pdf', 'export-as-docx'],
children: [
{
id: 'file-download-group',
title: t('download'),
children: [
'download-as-source-zip',
'download-pdf',
'export-as-docx',
],
},
],
},
{
id: 'settings',
children: ['open-settings'],
},
],
[]
[t]
)
const editMenuStructure: MenuStructure = useMemo(