
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 c059efbb36d9c0fb424d45af5cf3008f542514c2 (commit) from e2ecc55475b61ff62d69033566c5085f11f39512 (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 c059efbb36d9c0fb424d45af5cf3008f542514c2 Author: Dan Briem <dbriem@harrisonpl.org> Date: Mon Jul 7 14:30:38 2025 +0000 LP#2116042 Link Checker Session Dialog Associate Labels with IDs Add ids to the URL selector inputs to align with labels in the Link Checker dialog. Also, while the name attribute may be optional here, ensure existing name attribute binds properly. To test: Click the label to see if the corresponding input is focused. Release-note: Corrects form label associations for tag and subfield inputs in new Link Checker session dialog Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> Signed-off-by: Jane Sandberg <js7389@princeton.edu> diff --git a/Open-ILS/src/eg2/src/app/staff/cat/linkchecker/new-session-dialog.component.html b/Open-ILS/src/eg2/src/app/staff/cat/linkchecker/new-session-dialog.component.html index c7d69db09d..0f6466b2e7 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/linkchecker/new-session-dialog.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/linkchecker/new-session-dialog.component.html @@ -101,7 +101,8 @@ <div class="col-lg-3"> <input class="form-control" - name="selector_tag_{{idx}}" + [attr.name]="'selector_tag_' + idx" + [id]="'selector_tag_' + idx" type="text" required="true" [(ngModel)]="selectorModels['tag'][idx]" @@ -114,6 +115,8 @@ <input class="form-control" name="selector_subfields_{{idx}}" + [attr.name]="'selector_subfields_' + idx" + [id]="'selector_subfields_' + idx" type="text" required="true" [(ngModel)]="selectorModels['subfields'][idx]" ----------------------------------------------------------------------- Summary of changes: .../src/app/staff/cat/linkchecker/new-session-dialog.component.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS