Skip to content

Commit

Permalink
Consoles log y typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jortilles committed Dec 21, 2023
1 parent b04bc26 commit 53d6ff3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,6 @@ export class EdaBlankPanelComponent implements OnInit {
const config = output.styles ? new ChartConfig(output.styles) : new ChartConfig(output.config);
this.changeChartType(content.chart, content.edaChart, config);
this.chartForm.patchValue({ chart: this.chartUtils.chartTypes.find(o => o.subValue === content.edaChart) });
console.log('Reload content', this.display_v.saved_panel);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export class LinkDashboardsComponent extends EdaDialogAbstract {
}

onShow(): void {
console.log(this.controller)
this.oldLinked = this.controller.params.linkedDashboard ? this.controller.params.linkedDashboard.dashboardName : null;
if ((this.controller.params.charttype === 'parallelSets') && !this.controller.params.modeSQL) {

Expand All @@ -106,8 +105,6 @@ export class LinkDashboardsComponent extends EdaDialogAbstract {
let column = this.controller.params.query
.map((col, i) => { return { col: col.column_name, table: col.table_id, colname: col.display_name.default, index:i, column_type:col.column_type } })
.filter(col => (col.column_type === 'text' || col.column_type === 'date'))[0];

console.log(column)
this.column = column.index === 0 ? column.colname : this.noValidColumn;

if(column.index === 0){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ export const QueryUtils = {
ebp.panelChart.NO_DATA = false;
ebp.display_v.minispinner = true;
}
console.log(ebp);

try {

Expand Down Expand Up @@ -163,7 +162,6 @@ export const QueryUtils = {
return;
}

console.log(ebp);
/**
* Cumulative sum check
*/
Expand Down
6 changes: 3 additions & 3 deletions eda/eda_app/src/locale/messages.ca.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</trans-unit>
<trans-unit id="placeholderInputPassword" datatype="html">
<source>Contraseña</source>
<target>Contrassenya</target>
<target>Contrasenya</target>
<context-group purpose="location">
<context context-type="sourcefile">app/core/pages/login/login.component.html</context>
<context context-type="linenumber">31</context>
Expand All @@ -37,15 +37,15 @@
</trans-unit>
<trans-unit id="e369e13629132e32dcd958b82261059243f21d58" datatype="html">
<source>Contraseña</source>
<target>Contrassenya</target>
<target>Contrasenya</target>
<context-group purpose="location">
<context context-type="sourcefile">app/core/pages/register/register.component.html</context>
<context context-type="linenumber">31</context>
</context-group>
</trans-unit>
<trans-unit id="d554461cfe5e5317e9257ceb0f9f96bec13c86c4" datatype="html">
<source>Confirma contraseña</source>
<target>Confirma la contrassenya</target>
<target>Confirma la contrasenya</target>
<context-group purpose="location">
<context context-type="sourcefile">app/core/pages/register/register.component.html</context>
<context context-type="linenumber">35</context>
Expand Down

0 comments on commit 53d6ff3

Please sign in to comment.