
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_15 has been updated via a80dd91fa35e48bb45e5f9df2a2de0b24e5dd17f (commit) from 28d354cc5c3d6474948803c55b200cace3082c19 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a80dd91fa35e48bb45e5f9df2a2de0b24e5dd17f Author: Michele Morgan <mmorgan@noblenet.org> Date: Wed Apr 2 12:31:07 2025 -0400 Revert "LP#2100807: (follow-up) fix lint" - follow-up fix This reverts commit f67fe8e6997c9c5a4602c852c7deaabad764d186 and adds a follow-up fix. diff --git a/Open-ILS/src/eg2/src/app/staff/login.component.ts b/Open-ILS/src/eg2/src/app/staff/login.component.ts index a86b8ec3f7..ac11fb8241 100644 --- a/Open-ILS/src/eg2/src/app/staff/login.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/login.component.ts @@ -56,7 +56,8 @@ export class StaffLoginComponent implements OnInit { } else { // Remove /eg2/:locale/ however many times it's been prepended, so it's added back only once in prepareExternalUrl() // Hopefully doesn't scrub locale back to en-US? - this.routeTo = this.routeTo.replace(/^(\/eg2\/([a-z]{2}-[A-Z]{2}))+/, ''); + // eslint-disable-next-line quotes + this.routeTo = this.routeTo.replace(/^(\/eg2\/([a-z]{2}-[A-Z]{2}))+/, ""); } } diff --git a/Open-ILS/src/eg2/src/app/staff/mfa.component.ts b/Open-ILS/src/eg2/src/app/staff/mfa.component.ts index 7b2ca219e3..2b7acc2f82 100644 --- a/Open-ILS/src/eg2/src/app/staff/mfa.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/mfa.component.ts @@ -162,7 +162,8 @@ export class StaffMFAComponent implements OnInit { this.routeTo = null; } else { // Remove /eg2/:locale/ however many times it's been prepended, so it's added back only once in prepareExternalUrl() - this.routeTo = this.routeTo.replace(/^(\/eg2\/([a-z]{2}-[A-Z]{2}))+/, ''); + // eslint-disable-next-line quotes + this.routeTo = this.routeTo.replace(/^(\/eg2\/([a-z]{2}-[A-Z]{2}))+/, ""); } } } ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/login.component.ts | 3 ++- Open-ILS/src/eg2/src/app/staff/mfa.component.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- Evergreen ILS