Skip to content

Commit

Permalink
Remove a console log debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasTrigatti committed Sep 20, 2024
1 parent 003654e commit 52f3666
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,15 +277,8 @@ export class DimensionComponent implements OnInit, OnChanges {
}

public isVideoTypeLabelCategorical(currentCategoricalDimension : Dimension): boolean {
console.log(currentCategoricalDimension.name)
if (currentCategoricalDimension.scale && currentCategoricalDimension.scale instanceof ScaleCategorical) {
let primaryCategoricalDimension = this.getPrimaryCategoricalDimension();

/* Debug Test */
let test = this.task.settings.attributesMain.some(attribute => attribute.is_video) && currentCategoricalDimension.name != primaryCategoricalDimension.name;
//console.log(currentCategoricalDimension.name)
console.log(test);

return this.task.settings.attributesMain.some(attribute => attribute.is_video) && currentCategoricalDimension.name != primaryCategoricalDimension.name;
}
return false;
Expand Down

0 comments on commit 52f3666

Please sign in to comment.