라벨표시 수정

This commit is contained in:
kjs
2025-09-22 14:13:05 +09:00
parent 4b28530fec
commit 0258c2a76c
14 changed files with 235 additions and 144 deletions

View File

@@ -58,7 +58,7 @@ const loadGlobalTableCodeCategory = async (tableName: string, columnName: string
try {
await globalState.activeRequests.get(`table_${key}`);
} catch (error) {
console.error(`❌ 테이블 설정 로딩 대기 중 오류:`, error);
console.error("❌ 테이블 설정 로딩 대기 중 오류:", error);
}
}
@@ -111,7 +111,7 @@ const loadGlobalCodeOptions = async (codeCategory: string): Promise<Option[]> =>
try {
await globalState.activeRequests.get(`code_${codeCategory}`);
} catch (error) {
console.error(`❌ 코드 옵션 로딩 대기 중 오류:`, error);
console.error("❌ 코드 옵션 로딩 대기 중 오류:", error);
}
}
@@ -281,7 +281,7 @@ const SelectBasicComponent: React.FC<SelectBasicComponentProps> = ({
// 값이 실제로 다른 경우에만 업데이트 (빈 문자열도 유효한 값으로 처리)
if (newValue !== selectedValue) {
console.log(`🔄 SelectBasicComponent value 업데이트: "${selectedValue}" → "${newValue}"`);
console.log(`🔍 업데이트 조건 분석:`, {
console.log("🔍 업데이트 조건 분석:", {
externalValue,
componentConfigValue: componentConfig?.value,
configValue: config?.value,