From: Bill Erickson Date: Thu, 28 Jan 2021 19:17:54 +0000 (-0500) Subject: LP1901760 Shared Worker minor lint repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=45b0e0fe54e607678f8db0f662e539407494fa83;p=Evergreen.git LP1901760 Shared Worker minor lint repair Repair a missing semicolon to keep lint happy. Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/core/org.service.ts b/Open-ILS/src/eg2/src/app/core/org.service.ts index 8caf1d9db6..bf98630829 100644 --- a/Open-ILS/src/eg2/src/app/core/org.service.ts +++ b/Open-ILS/src/eg2/src/app/core/org.service.ts @@ -346,6 +346,6 @@ export class OrgService { schema: 'cache', table: 'Setting', action: 'deleteAll' - }).catch(_ => null) + }).catch(_ => null); } }