We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ac195e commit 75cc1eeCopy full SHA for 75cc1ee
src/app/shared/services/files.service.ts
@@ -88,7 +88,7 @@ export class FilesService {
88
getFilesWithoutFiltering(filesLink: string, page = 1): Observable<{ files: FileModel[]; meta?: MetaJsonApi }> {
89
const params: Record<string, string> = {
90
page: page.toString(),
91
- }
+ };
92
return this.jsonApiService
93
.get<FilesResponseJsonApi>(filesLink, params)
94
.pipe(map((response) => ({ files: FilesMapper.getFiles(response.data), meta: response.meta })));
0 commit comments