제어관리 로그 노드 제거
This commit is contained in:
@@ -87,11 +87,7 @@ export const TablesPanel: React.FC<TablesPanelProps> = ({
|
||||
...table,
|
||||
columns: table.columns.filter((col) => {
|
||||
const columnKey = `${table.tableName}.${col.columnName}`;
|
||||
const isPlaced = placedColumns.has(columnKey);
|
||||
if (isPlaced) {
|
||||
console.log("🚫 필터링된 컬럼:", columnKey);
|
||||
}
|
||||
return !isPlaced;
|
||||
return !placedColumns.has(columnKey);
|
||||
}),
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user