chpark-sync #425

Merged
kjs merged 293 commits from chpark-sync into main 2026-03-23 09:36:36 +09:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 22b2a6ea7b - Show all commits

View File

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