[GIT] Evergreen ILS branch main updated. d1c36459a6e15fe0443dc5e55c638b140c80f5a4

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 d1c36459a6e15fe0443dc5e55c638b140c80f5a4 (commit) from 9d15c6cfed1557cf637309b0c8b6c3c7b5aff6d7 (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 d1c36459a6e15fe0443dc5e55c638b140c80f5a4 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 36b6efbc2c..4f9973a30f 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 @@ -216,7 +216,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
participants (1)
-
Git User