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

Merged
ysCha merged 1 commits from dev into prd-deploy 2025-06-11 14:55:25 +09:00
Showing only changes of commit fed817c6d0 - Show all commits

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 = []