From 7b96a88520b684325aa7dde41ac2233fbd4be4ac Mon Sep 17 00:00:00 2001 From: Juanjo Ortilles Date: Wed, 16 Oct 2024 18:45:57 +0200 Subject: [PATCH] Qutados console logs --- .../eda-blank-panel/table-dialog/table-dialog.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/eda/eda_app/src/app/module/components/eda-panels/eda-blank-panel/table-dialog/table-dialog.component.ts b/eda/eda_app/src/app/module/components/eda-panels/eda-blank-panel/table-dialog/table-dialog.component.ts index 9c8125a6..7d794d59 100644 --- a/eda/eda_app/src/app/module/components/eda-panels/eda-blank-panel/table-dialog/table-dialog.component.ts +++ b/eda/eda_app/src/app/module/components/eda-panels/eda-blank-panel/table-dialog/table-dialog.component.ts @@ -86,7 +86,6 @@ export class TableDialogComponent extends EdaDialogAbstract implements AfterView this.panelChartConfig = this.controller.params.panelChart; if (this.panelChartConfig && this.panelChartConfig.config) { const config = (this.panelChartConfig.config.getConfig()); - console.log('config: ',config); this.row_totals = config.withRowTotals; this.col_totals = config.withColTotals; this.col_subtotals = config.withColSubTotals; @@ -152,7 +151,6 @@ export class TableDialogComponent extends EdaDialogAbstract implements AfterView private noRepeat() { const currentConfig = this.myPanelChartComponent.currentConfig; - console.log('currentConfig_========>',currentConfig) currentConfig.noRepetitions = !currentConfig.noRepetitions; this.myPanelChartComponent.componentRef.instance.inject.checkTotals(null); this.noRepetitions = currentConfig.noRepetitions; @@ -171,7 +169,6 @@ export class TableDialogComponent extends EdaDialogAbstract implements AfterView this.myPanelChartComponent.componentRef.instance.inject.checkTotals(null); this.negativeNumbers = currentConfig.negativeNumbers; - console.log('negativeNumbers: =-=-=>>>>', this.negativeNumbers); this.setItems(); }