Fixed a couple lint errors.

This commit is contained in:
Michael Spalti
2022-09-15 11:52:13 -07:00
parent 46ecf287a4
commit 516300f3e5
2 changed files with 2 additions and 2 deletions

View File

@@ -121,7 +121,7 @@ describe('RelationshipService', () => {
findByHref: createSuccessfulRemoteDataObject$(relatedItems[0]) findByHref: createSuccessfulRemoteDataObject$(relatedItems[0])
}); });
const appConfig = Object.assign({browseBy: {showThumbnails: true}}) const appConfig = Object.assign({browseBy: {showThumbnails: true}});
function initTestService() { function initTestService() {
return new RelationshipService( return new RelationshipService(

View File

@@ -4,7 +4,7 @@
*/ */
export function setPlaceHolderFontSize(width: number): string { export function setPlaceHolderFontSize(width: number): string {
if (width < 400) { if (width < 400) {
return 'thumb-font-0' return 'thumb-font-0';
} else if (width < 750) { } else if (width < 750) {
return 'thumb-font-1'; return 'thumb-font-1';
} else if (width < 1000) { } else if (width < 1000) {