diff --git a/src/app/components/graphs.component.ts b/src/app/components/graphs.component.ts index cb1e057..cb37094 100644 --- a/src/app/components/graphs.component.ts +++ b/src/app/components/graphs.component.ts @@ -68,9 +68,7 @@ export class GraphsComponent implements OnChanges { } public prepareGuillocheExport(guillocheElement) { - const item = this.genLoadedAllGraphs.next().value; - console.log(item); - if (item) { + if (this.genLoadedAllGraphs.next().value) { this.svgChange.emit(this.svgElementRef); } }