Hi,
I want to add 'Save as PDF' button to my survey preview page, but when I use
Codesurvey.addNavigationItem({
id: 'survey_save_as_file',
title: 'Save as PDF',
action: async () => {
await saveSurveyToPdf('surveyResult.pdf', survey, JSON.parse(schema));
}});
I don't have this navigation button on my preview page.