mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 05:28:45 -05:00
fix: matrix survey sync issue (#3283)
This commit is contained in:
committed by
GitHub
parent
f38a4665e4
commit
e31e9f4fa1
+2
-2
@@ -135,7 +135,7 @@ export const MatrixQuestionForm = ({
|
||||
{question.rows.map((_, index) => (
|
||||
<div className="flex items-center" onKeyDown={(e) => handleKeyDown(e, "row")}>
|
||||
<QuestionFormInput
|
||||
key={`row-${index}`}
|
||||
key={`row-${index}-${question.rows.length}`}
|
||||
id={`row-${index}`}
|
||||
label={""}
|
||||
localSurvey={localSurvey}
|
||||
@@ -177,7 +177,7 @@ export const MatrixQuestionForm = ({
|
||||
{question.columns.map((_, index) => (
|
||||
<div className="flex items-center" onKeyDown={(e) => handleKeyDown(e, "column")}>
|
||||
<QuestionFormInput
|
||||
key={`column-${index}`}
|
||||
key={`column-${index}-${question.columns.length}`}
|
||||
id={`column-${index}`}
|
||||
label={""}
|
||||
localSurvey={localSurvey}
|
||||
|
||||
Reference in New Issue
Block a user