[TLC-380] Lint fixes

This commit is contained in:
Kim Shepherd
2022-11-23 13:36:55 +13:00
parent 928157f994
commit 3c48df6fe5
6 changed files with 34 additions and 35 deletions

View File

@@ -229,7 +229,6 @@ export class BrowseService {
* @param linkPath
*/
getBrowseURLFor(metadataKey: string, linkPath: string): Observable<string> {
console.log("Looking for " + metadataKey + " in link path " + linkPath);
const searchKeyArray = BrowseService.toSearchKeyArray(metadataKey);
return this.getBrowseDefinitions().pipe(
getRemoteDataPayload(),
@@ -261,7 +260,7 @@ export class BrowseService {
let searchKeyArray: string[] = [];
metadataKeys.forEach((metadataKey) => {
searchKeyArray = searchKeyArray.concat(BrowseService.toSearchKeyArray(metadataKey));
})
});
return this.getBrowseDefinitions().pipe(
getRemoteDataPayload(),
getPaginatedListPayload(),