From 0d3fdf78ebff4fde9e0c2c26d5254455dc1905b9 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 10 Mar 2022 11:08:04 +0100 Subject: [PATCH] focus on previous hour when deleting one --- .../administration/form/steps/step-four/step-four.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/features/administration/form/steps/step-four/step-four.component.ts b/src/app/features/administration/form/steps/step-four/step-four.component.ts index 4f047bbe..b39348d6 100644 --- a/src/app/features/administration/form/steps/step-four/step-four.component.ts +++ b/src/app/features/administration/form/steps/step-four/step-four.component.ts @@ -74,7 +74,7 @@ export class StepFourComponent implements OnInit { } focusOnChoice(index): void { - const selector = '#choice_label_' + index; + const selector = '#dateChoices_' + index; const elem = this.document.querySelector(selector); if (elem) { elem.focus();