From 768e8c4231b312d703ff5c732583693e593857d8 Mon Sep 17 00:00:00 2001 From: Alexander Brandon Coles Date: Thu, 4 Jun 2026 17:34:29 +0200 Subject: [PATCH] Drop dangling underscore in select-edit-field --- .../select-edit-field/select-edit-field.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts index bc10acd6757..729c1590b50 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts @@ -128,7 +128,7 @@ export class SelectEditFieldComponent extends EditFieldComponent implements OnIn }); }); - this._syncUrlParamsOnChangeIfNeeded(this.handler.fieldName, this.editFormComponent?.editMode); + this.syncUrlParamsOnChangeIfNeeded(this.handler.fieldName, this.editFormComponent?.editMode); } protected initialize() { @@ -302,7 +302,7 @@ export class SelectEditFieldComponent extends EditFieldComponent implements OnIn return _.find(this.availableOptions, (el) => el.name === this.text.placeholder); } - private _syncUrlParamsOnChangeIfNeeded(fieldName:string, editMode?:boolean) { + private syncUrlParamsOnChangeIfNeeded(fieldName:string, editMode?:boolean) { // Work package type changes need to be synced with the type url param // in order to keep the form changes (changeset) between route/state changes if (fieldName === 'type' && editMode) {