
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_14 has been updated via 725f9fb153ad463ff379c188a7310e8a8f5860e6 (commit) from e64136b70be29c2926382a214c5493c602d16177 (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 725f9fb153ad463ff379c188a7310e8a8f5860e6 Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Mon Apr 7 22:54:38 2025 +0000 LP2101886 Follow-up: lint Silence a lint warning about the new const declaration in the keydown switch case. Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> diff --git a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts index e5fb58b15c..211f08a535 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts @@ -212,7 +212,8 @@ export class MarcRichEditorComponent implements OnInit { case 'ArrowLeft': case 'ArrowRight': // console.debug("ArrowRight: ", evt, field, subfield); - let el = evt.target as HTMLElement; + // eslint-disable-next-line no-case-declarations + const el = evt.target as HTMLElement; // do nothing if we are in a text input if (el.nodeName && (el.nodeName.toLowerCase() === 'input' || el.nodeName.toLowerCase() === 'textarea')) { return; ----------------------------------------------------------------------- Summary of changes: .../src/eg2/src/app/staff/share/marc-edit/rich-editor.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS