Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
vladyslav-tk committed Aug 2, 2024
1 parent 134e579 commit b48bf13
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ui/src/toolbox/ngm-geometry-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,9 @@ export class NgmGeometryInfo extends LitElementI18n {
this.geometry = ToolboxStore.openedGeometry;
this.editing = !!options.editing;
this.sliceActive = ToolboxStore.sliceGeomId === this.geometry?.id;
console.log('geom', this.sliceActive, ToolboxStore.sliceGeomId, this.geometry?.id);
});
ToolboxStore.sliceGeometry.subscribe(() => {
this.sliceActive = ToolboxStore.sliceGeomId === this.geometry?.id;
console.log('slice', this.sliceActive, ToolboxStore.sliceGeomId, this.geometry?.id);
});
ToolboxStore.geometries.subscribe(() => this.geometry = ToolboxStore.openedGeometry);
ToolboxStore.noEditGeometries.subscribe(() => this.geometry = ToolboxStore.openedGeometry);
Expand Down

0 comments on commit b48bf13

Please sign in to comment.