설치면에 module이 없는 경우 처리

This commit is contained in:
hyojun.choi 2025-06-11 11:13:18 +09:00
parent 657d971a2b
commit fed817c6d0

View File

@ -2568,6 +2568,10 @@ export const useTrestle = () => {
const getSameLineModules = (surface) => {
const { direction, modules, isChidory } = surface
if (!modules || modules.length === 0) {
return
}
// 같은 단에 있는 모듈들의 리스트
let sameLineModuleList = []