검색필터 고장

This commit is contained in:
kjs
2025-12-24 14:46:51 +09:00
parent 5102eec46f
commit 5daef415ad
6 changed files with 183 additions and 116 deletions

View File

@@ -542,10 +542,12 @@ export const InteractiveScreenViewerDynamic: React.FC<InteractiveScreenViewerPro
if (response.success) {
// 리피터 데이터 저장 이벤트 발생 (UnifiedRepeater 컴포넌트가 리스닝)
window.dispatchEvent(new CustomEvent("repeaterSave", {
detail: { parentId: response.data?.id || formData.id }
}));
window.dispatchEvent(
new CustomEvent("repeaterSave", {
detail: { parentId: response.data?.id || formData.id },
}),
);
toast.success("데이터가 성공적으로 저장되었습니다.");
} else {
toast.error(response.message || "저장에 실패했습니다.");