Skip to content

Commit 95fdf2a

Browse files
authored
Merge pull request #898 from PermanentOrg/noissue-fix-info
Fix the Info Pane
2 parents 1d9ba0f + ce15770 commit 95fdf2a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/app/file-browser/components/edit-tags/edit-tags.component.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ describe('EditTagsComponent', () => {
8282
{
8383
provide: DataService,
8484
useValue: {
85+
currentFolderChange: of(null),
8586
fetchFullItems: async (items: ItemVO[]) =>
8687
await Promise.resolve([]),
8788
},

src/app/file-browser/components/edit-tags/edit-tags.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type TagType = 'keyword' | 'customMetadata';
3434
templateUrl: './edit-tags.component.html',
3535
styleUrls: ['./edit-tags.component.scss'],
3636
animations: [ngIfScaleAnimation],
37-
providers: [SearchService, DataService],
37+
providers: [SearchService],
3838
standalone: false,
3939
})
4040
export class EditTagsComponent

0 commit comments

Comments
 (0)