jskim-node #409

Merged
kjs merged 3 commits from jskim-node into main 2026-03-10 11:03:48 +09:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit f565b2d119 - Show all commits

View File

@ -679,7 +679,7 @@ export const EditModal: React.FC<EditModalProps> = ({ className }) => {
(targetComponent as any)?.componentConfig?.columnName ||
targetComponentId;
const currentFormData = groupData.length > 0 ? groupData[0] : formData;
const currentFormData = groupData.length > 0 ? { ...formData, ...groupData[0] } : formData;
const targetValue = currentFormData[fieldKey];
let isMatch = false;