diff --git a/apps/web/i18n.lock b/apps/web/i18n.lock index e9ceebb23d..8ea152bdc7 100644 --- a/apps/web/i18n.lock +++ b/apps/web/i18n.lock @@ -1387,7 +1387,6 @@ checksums: environments/surveys/edit/needed_for_self_hosted_cal_com_instance: d241e72f0332177d32ce6c35070757dc environments/surveys/edit/next_block: 53eaa5b1c9333455ab1e99bedd222ba2 environments/surveys/edit/next_button_label: e23522dd38f3eabeeccd3f48f32b73a8 - environments/surveys/edit/next_question: 2e0f1ea264fb4bfcb8378b2b0cf7c18f environments/surveys/edit/no_hidden_fields_yet_add_first_one_below: 9cc6cab3a6a42dbf835215897b5b8516 environments/surveys/edit/no_images_found_for: 90f10f4611ed7b115a49595409b66ebe environments/surveys/edit/no_languages_found_add_first_one_to_get_started: 22d7782c8504daf693cab3cf7135d6e3 diff --git a/apps/web/modules/survey/editor/components/open-question-form.tsx b/apps/web/modules/survey/editor/components/open-question-form.tsx index 9512e70cbd..a467681acf 100644 --- a/apps/web/modules/survey/editor/components/open-question-form.tsx +++ b/apps/web/modules/survey/editor/components/open-question-form.tsx @@ -181,7 +181,7 @@ export const OpenQuestionForm = ({ }, }); }} - htmlId="charLimit" + htmlId={`charLimit-${question.id}`} description={t("environments.surveys.edit.character_limit_toggle_description")} childBorder title={t("environments.surveys.edit.character_limit_toggle_title")} @@ -238,7 +238,7 @@ export const OpenQuestionForm = ({ longAnswer: checked, }); }} - htmlId="longAnswer" + htmlId={`longAnswer-${question.id}`} title={t("environments.surveys.edit.long_answer")} description={t("environments.surveys.edit.long_answer_toggle_description")} disabled={question.inputType !== "text"}