From f7a8462eee292bded7724d11fafdfd3e649727dc Mon Sep 17 00:00:00 2001 From: ghiscoding Date: Fri, 20 Dec 2024 15:51:48 -0500 Subject: [PATCH] chore: ignore Prettier lines to increase test coverage back to previous --- .../components/angular-slickgrid.component.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts b/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts index 4dae18c7a..4dee59392 100644 --- a/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts +++ b/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts @@ -511,10 +511,8 @@ export class AngularSlickgridComponent implements AfterViewInit, On // internalPostProcess only works (for now) with a GraphQL Service, so make sure it is of that type if (typeof backendApiService.getDatasetName === 'function') { backendApi.internalPostProcess = (processResult: any) => { - const datasetName = - backendApi && backendApiService && typeof backendApiService.getDatasetName === 'function' - ? backendApiService.getDatasetName() - : ''; + // prettier-ignore + const datasetName = backendApi && backendApiService && typeof backendApiService.getDatasetName === 'function' ? backendApiService.getDatasetName() : ''; if (processResult?.data[datasetName]) { const data = 'nodes' in processResult.data[datasetName]