From 381bf6f62353c2c0b46c6048cc74139e72346c56 Mon Sep 17 00:00:00 2001 From: WilliamRClark Date: Wed, 2 Jun 2021 17:24:44 -0400 Subject: [PATCH] Add corresponding component code. --- component/src/app/file-browse/file-browse.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component/src/app/file-browse/file-browse.component.ts b/component/src/app/file-browse/file-browse.component.ts index 07a888d..e75e3c4 100644 --- a/component/src/app/file-browse/file-browse.component.ts +++ b/component/src/app/file-browse/file-browse.component.ts @@ -158,7 +158,7 @@ export class FileBrowseComponent implements OnInit { // Update the path let lastBreadcrumbPath = this.breadcrumbPaths[this.breadcrumbPaths.length - 1].path; - this.fileService.getFiles(lastBreadcrumbPath).subscribe( + this.fileService.getFiles(lastBreadcrumbPath, this.filter).subscribe( res => { this.files = res; },