범용 폼 모달 사전필터 기능 수정

This commit is contained in:
kjs
2026-01-06 11:43:26 +09:00
parent 9ea0f1b84f
commit 6bfc1a97a3
7 changed files with 689 additions and 397 deletions

View File

@@ -53,6 +53,12 @@ export function useEntitySearch({
limit: pagination.limit.toString(),
});
console.log("[useEntitySearch] 검색 실행:", {
tableName,
filterCondition: filterConditionRef.current,
searchText: text,
});
const response = await apiClient.get<EntitySearchResponse>(
`/entity-search/${tableName}?${params.toString()}`
);