Compare commits

..

3 Commits

Author SHA1 Message Date
bc2287de33 Merge pull request 'dev' (#795) from dev into dev-deploy
Reviewed-on: #795
2026-04-27 13:25:18 +09:00
428ff36afb 라인줄표시, 인덱스 재설치 2026-04-27 13:24:21 +09:00
6b02b2cad0 빌드 오류 수정: debugLabels import 제거
dev-deploy 빌드에서 untracked 파일(@/util/debugLabels) 참조로 실패.
디버그 전용 라벨 부착 호출은 로컬 한정이므로 커밋 대상에서 제거.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-27 13:20:19 +09:00

View File

@ -7,7 +7,7 @@ import * as turf from '@turf/turf'
import { LINE_TYPE, POLYGON_TYPE } from '@/common/common' import { LINE_TYPE, POLYGON_TYPE } from '@/common/common'
import Big from 'big.js' import Big from 'big.js'
import { drawSkeletonRidgeRoof, drawSkeletonRidgeRoofFromBaseLines, verifyMoveBoundary } from '@/util/skeleton-utils' import { drawSkeletonRidgeRoof, drawSkeletonRidgeRoofFromBaseLines, verifyMoveBoundary } from '@/util/skeleton-utils'
import { attachDebugLabels } from '@/util/debugLabels'
export const QPolygon = fabric.util.createClass(fabric.Polygon, { export const QPolygon = fabric.util.createClass(fabric.Polygon, {
type: 'QPolygon', type: 'QPolygon',
@ -515,9 +515,6 @@ export const QPolygon = fabric.util.createClass(fabric.Polygon, {
// console.log('변별로 설정') // console.log('변별로 설정')
drawRoofByAttribute(this.id, this.canvas, textMode) drawRoofByAttribute(this.id, this.canvas, textMode)
} }
// [DEBUG] URL ?debug=labels 일 때만 라벨 부착. 운영 빌드/평소엔 noop.
attachDebugLabels(this.canvas, this.id)
}, },
/** /**