엔티티 조인 설정에서 카테고리 드롭다운을 제외하고, RepeaterTable에서 카테고리 타입을 추가하여 관련 옵션을 로드하도록 수정했습니다. 또한, 코드 정리를 통해 가독성을 향상시켰습니다.
This commit is contained in:
@@ -750,9 +750,9 @@ export class EntityJoinService {
|
||||
return columns.map((col) => {
|
||||
const labelInfo = labelMap.get(col.column_name);
|
||||
return {
|
||||
columnName: col.column_name,
|
||||
columnName: col.column_name,
|
||||
displayName: labelInfo?.label || col.column_name,
|
||||
dataType: col.data_type,
|
||||
dataType: col.data_type,
|
||||
inputType: labelInfo?.inputType || "text",
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user