Skip to content

Commit 8cb2a4a

Browse files
committed
chore: bump version
1 parent bade6cc commit 8cb2a4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/front/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components-front",
33
"description": "Collection of frontend tools to author BIM apps.",
4-
"version": "3.2.7",
4+
"version": "3.2.8",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",

packages/front/src/measurement/AreaMeasurement/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export class AreaMeasurement extends Measurement<Area, "area"> {
167167
if (!(pickerData && pickerData.point)) return;
168168

169169
if (this.mode === "face") {
170-
const facePoints = pickerData.facePoints;
170+
const facePoints = (pickerData as any).facePoints;
171171
if (!facePoints) return;
172172
const points: THREE.Vector3[] = [];
173173
for (let i = 0; i < facePoints.length - 2; i += 3) {

0 commit comments

Comments
 (0)