From 42af1e3abf3e3da7319bc2597137846c7fcd5a13 Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Thu, 23 May 2024 13:32:19 +0100 Subject: [PATCH] Fixed after rebase --- .../components/document-list.component.spec.ts | 4 ++-- .../site-dropdown/sites-dropdown.component.html | 3 +-- .../sites-dropdown.component.spec.ts | 17 +++++++++++------ .../context-menu/context-menu-list.component.ts | 1 + 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts index 60b2fee80a..43847c0931 100644 --- a/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts +++ b/lib/content-services/src/lib/document-list/components/document-list.component.spec.ts @@ -1431,7 +1431,7 @@ describe('DocumentList', () => { expect(documentList.reload).toHaveBeenCalled(); }); - it('should not show loading state if pagination is updated with merge setting as true', fakeAsync(() => { + it('should not show loading state if pagination is updated with merge setting as true', () => { spyFolderNode = spyOn(documentListService, 'loadFolderByNodeId').and.callFake(() => of( new DocumentLoaderNode(null, { @@ -1456,7 +1456,7 @@ describe('DocumentList', () => { fixture.detectChanges(); expect(element.querySelector('#adf-document-list-loading')).toBe(null); - })); + }); it('should NOT reload data on first call of ngOnChanges', () => { spyOn(documentList, 'reload').and.stub(); diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html index 0e59ab521a..658ebce41c 100644 --- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html +++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.html @@ -1,5 +1,6 @@