[GIT] Evergreen ILS branch rel_3_15 updated. 329789c2391a70450c97e106cc24c1ef69f71cf8

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, rel_3_15 has been updated via 329789c2391a70450c97e106cc24c1ef69f71cf8 (commit) from d35da051ea0a6635a250912211e399ffc5ce543f (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 329789c2391a70450c97e106cc24c1ef69f71cf8 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
participants (1)
-
Git User