From 361cfc425f1525e0be212ddf6bfd92f582d25f11 Mon Sep 17 00:00:00 2001 From: Brian Jemilo II Date: Fri, 14 Apr 2023 15:00:15 -0500 Subject: [PATCH] Spacebar should also select. --- .../angular-editor/src/lib/ae-select/ae-select.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/angular-editor/src/lib/ae-select/ae-select.component.ts b/projects/angular-editor/src/lib/ae-select/ae-select.component.ts index 7502b9fa..1115678a 100644 --- a/projects/angular-editor/src/lib/ae-select/ae-select.component.ts +++ b/projects/angular-editor/src/lib/ae-select/ae-select.component.ts @@ -195,7 +195,7 @@ export class AeSelectComponent implements OnInit, ControlValueAccessor { } _handleSpace($event) { - + this.optionSelect(this.options[this.optionId], $event); } _handleEnter($event) {