From 021e4cf1fce970b1a5016d1dd00f865b1a046945 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 21 Nov 2019 11:58:09 -0500 Subject: [PATCH] LPXXX editor continued Signed-off-by: Bill Erickson --- .../eg2/src/app/staff/share/marc-edit/editable-content.component.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editable-content.component.ts b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editable-content.component.ts index 65529686a7..17f2a4d967 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editable-content.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/editable-content.component.ts @@ -162,10 +162,7 @@ export class EditableContentComponent implements OnInit, AfterViewInit { // Route keydown events to the appropriate handler inputKeyDown(evt: KeyboardEvent) { - if (this.fieldType === 'ldr') { - // This may be overkill, we'll see - return; - } + if (this.fieldType === 'ldr') { return; } switch (evt.key) { case 'Enter': return this.keyEnter(evt); -- 2.11.0