[GIT] Evergreen ILS branch main updated. df8de089258bac5a7430caddaa512d2e254096f7

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, main has been updated via df8de089258bac5a7430caddaa512d2e254096f7 (commit) from 1034f00474d5ae475c7a050949418ee01738c7c0 (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 df8de089258bac5a7430caddaa512d2e254096f7 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
participants (1)
-
Git User