From 348567fdb1880734939877ac19113ea36ea6c57f Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Wed, 9 Oct 2024 15:32:20 +0200 Subject: [PATCH] MOBILE-4616 reports: Remove OnPush to avoid infinite-loading problem --- .../reportbuilder/components/report-detail/report-detail.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/features/reportbuilder/components/report-detail/report-detail.ts b/src/core/features/reportbuilder/components/report-detail/report-detail.ts index 69f0088d3..67d7cbf36 100644 --- a/src/core/features/reportbuilder/components/report-detail/report-detail.ts +++ b/src/core/features/reportbuilder/components/report-detail/report-detail.ts @@ -13,7 +13,7 @@ // limitations under the License. import { toBoolean } from '@/core/transforms/boolean'; -import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { CoreError } from '@classes/errors/error'; import { CoreReportBuilder, @@ -37,7 +37,6 @@ import { map } from 'rxjs/operators'; selector: 'core-report-builder-report-detail', templateUrl: './report-detail.html', styleUrls: ['./report-detail.scss'], - changeDetection: ChangeDetectionStrategy.OnPush, }) export class CoreReportBuilderReportDetailComponent implements OnInit {