Releasing new design #161

Merged
b merged 241 commits from staging into main 2024-08-21 11:38:25 +00:00
Showing only changes of commit c0ca9de5a0 - Show all commits

View File

@ -153,7 +153,7 @@ export const DrawPDFFields = (props: Props) => {
return !!pdfFiles.filter(pdfFile => !!pdfFile.expanded).length return !!pdfFiles.filter(pdfFile => !!pdfFile.expanded).length
} }
const handleAccordionExpandChange = (event: React.SyntheticEvent<Element, Event>, expanded: boolean, pdfFile: PdfFile) => { const handleAccordionExpandChange = (expanded: boolean, pdfFile: PdfFile) => {
pdfFile.expanded = expanded pdfFile.expanded = expanded
setPdfFiles(pdfFiles) setPdfFiles(pdfFiles)
@ -189,7 +189,7 @@ export const DrawPDFFields = (props: Props) => {
{pdfFiles.map((pdfFile) => { {pdfFiles.map((pdfFile) => {
return ( return (
<Accordion expanded={pdfFile.expanded} onChange={(event, expanded) => {handleAccordionExpandChange(event, expanded, pdfFile)}}> <Accordion expanded={pdfFile.expanded} onChange={(_event, expanded) => {handleAccordionExpandChange(expanded, pdfFile)}}>
<AccordionSummary <AccordionSummary
expandIcon={<ExpandMore />} expandIcon={<ExpandMore />}
aria-controls="panel1-content" aria-controls="panel1-content"