We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4437f9 commit b262f5bCopy full SHA for b262f5b
apps/dashboard/src/components/forms/components/form-components.tsx
@@ -715,6 +715,7 @@ function ComponentRow({
715
</SortableItemHandle>
716
{fieldNamePrefix ? (
717
<FormField
718
+ key={`${component.id}-name-${fieldNamePrefix}`}
719
control={form.control}
720
name={`${fieldNamePrefix}.name` as "components.0.name"}
721
render={({ field }) => (
@@ -740,6 +741,7 @@ function ComponentRow({
740
741
<div className="flex flex-row items-center gap-1 self-center">
742
743
744
+ key={`${component.id}-description-${fieldNamePrefix}`}
745
746
name={
747
`${fieldNamePrefix}.description` as "components.0.description"
0 commit comments