dev #275

Merged
ysCha merged 5 commits from dev into prd-deploy 2025-08-04 17:28:22 +09:00
Showing only changes of commit 359c7c458f - Show all commits

View File

@ -846,8 +846,8 @@ export const usePolygon = () => {
if (checkLineOverlap(innerLine, polygonLine)) { if (checkLineOverlap(innerLine, polygonLine)) {
// innerLine의 type을 polygonLine의 type으로 변경 // innerLine의 type을 polygonLine의 type으로 변경
if (polygonLine.attributes?.type && innerLine.attributes) { if (polygonLine.attributes?.type && innerLine.attributes) {
polygonLine.need = false // polygonLine.need = false
innerLine.attributes = polygonLine.attributes innerLine.attributes = { ...polygonLine.attributes }
innerLine.direction = polygonLine.direction innerLine.direction = polygonLine.direction
innerLine.attributes.isStart = true innerLine.attributes.isStart = true
} }