Skip to content

Commit

Permalink
chore(edit-content): Fix format #30060
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Nov 22, 2024
1 parent 1315692 commit c600249
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ import {
} from '@ngneat/spectator/jest';
import { of } from 'rxjs';

import { DotContentTypeService, DotSiteService, DotWorkflowActionsFireService } from '@dotcms/data-access';
import {
DotContentTypeService,
DotSiteService,
DotWorkflowActionsFireService
} from '@dotcms/data-access';

import { DotEditContentService } from './dot-edit-content.service';

Expand All @@ -25,7 +29,7 @@ describe('DotEditContentService', () => {
const createHttp = createHttpFactory({
service: DotEditContentService,
providers: [
mockProvider(DotSiteService),
mockProvider(DotSiteService),
mockProvider(DotContentTypeService),
mockProvider(DotWorkflowActionsFireService)
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export class DotEditContentService {
.get<{ entity: { count: number } }>(`/api/v1/content/${identifier}/references/count`)
.pipe(map((response) => response.entity.count));
}

/**
* Get content by folder
*
Expand Down

0 comments on commit c600249

Please sign in to comment.