расширение лимитов инпутов

This commit is contained in:
Nastya 2025-03-31 19:28:55 +03:00
parent 3d35ef033a
commit 2f843b4c96
2 changed files with 4 additions and 4 deletions

@ -60,7 +60,7 @@ export default function NewFieldParent({
value={quiz.config.formContact.fields[defaultValue].text} value={quiz.config.formContact.fields[defaultValue].text}
placeholder={placeholderHelp} placeholder={placeholderHelp}
text={""} text={""}
maxLength={20} maxLength={150}
/> />
</Box> </Box>
<Box sx={{ display: "flex", flexDirection: "column", gap: "15px" }}> <Box sx={{ display: "flex", flexDirection: "column", gap: "15px" }}>
@ -75,7 +75,7 @@ export default function NewFieldParent({
value={quiz.config.formContact.fields[defaultValue].innerText} value={quiz.config.formContact.fields[defaultValue].innerText}
placeholder={placeholderField} placeholder={placeholderField}
text={""} text={""}
maxLength={20} maxLength={150}
/> />
</Box> </Box>
</> </>

@ -738,7 +738,7 @@ export default function StartPageSettings() {
quiz.config.startpage.button = e.target.value; quiz.config.startpage.button = e.target.value;
}) })
} }
maxLength={15} maxLength={150}
/> />
<Typography <Typography
sx={{ sx={{
@ -791,7 +791,7 @@ export default function StartPageSettings() {
quiz.config.info.orgname = e.target.value; quiz.config.info.orgname = e.target.value;
}) })
} }
maxLength={25} maxLength={150}
/> />
<Typography <Typography
sx={{ sx={{