From 516300f3e59058aa99fbdcbb7580ab3190fc7e2b Mon Sep 17 00:00:00 2001 From: Michael Spalti Date: Thu, 15 Sep 2022 11:52:13 -0700 Subject: [PATCH] Fixed a couple lint errors. --- src/app/core/data/relationship.service.spec.ts | 2 +- src/app/shared/utils/object-list-utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/data/relationship.service.spec.ts b/src/app/core/data/relationship.service.spec.ts index 38a3183cac..f0e59be9ee 100644 --- a/src/app/core/data/relationship.service.spec.ts +++ b/src/app/core/data/relationship.service.spec.ts @@ -121,7 +121,7 @@ describe('RelationshipService', () => { findByHref: createSuccessfulRemoteDataObject$(relatedItems[0]) }); - const appConfig = Object.assign({browseBy: {showThumbnails: true}}) + const appConfig = Object.assign({browseBy: {showThumbnails: true}}); function initTestService() { return new RelationshipService( diff --git a/src/app/shared/utils/object-list-utils.ts b/src/app/shared/utils/object-list-utils.ts index 6c438c4600..6aa9f18510 100644 --- a/src/app/shared/utils/object-list-utils.ts +++ b/src/app/shared/utils/object-list-utils.ts @@ -4,7 +4,7 @@ */ export function setPlaceHolderFontSize(width: number): string { if (width < 400) { - return 'thumb-font-0' + return 'thumb-font-0'; } else if (width < 750) { return 'thumb-font-1'; } else if (width < 1000) {