From 45e0052538dc0a7515abb7fdd3409775c6f3e2f4 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Sun, 17 Jun 2018 23:57:47 -0700 Subject: [PATCH] fix fillet info rendering --- web/app/cad/craft/fillet/filletOperation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/cad/craft/fillet/filletOperation.js b/web/app/cad/craft/fillet/filletOperation.js index ff6bd37d..df34cf97 100644 --- a/web/app/cad/craft/fillet/filletOperation.js +++ b/web/app/cad/craft/fillet/filletOperation.js @@ -5,7 +5,7 @@ export default { label: 'Fillet', icon: 'img/cad/intersection', info: 'creates a fillet on selected edges', - paramsInfo: ({operands}) => operands.map(o => o.thikness).join(' ,'), + paramsInfo: ({edges}) => edges.map(o => o.thikness).join(' ,'), previewGeomProvider: () => new THREE.Geometry(), run: (request) => console.dir(request), wizard: FilletWizard,