[GIT] Evergreen ILS branch rel_3_14 updated. 367ad7dee3c586f67f072e6a0f69ed5682677ffc

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_14 has been updated via 367ad7dee3c586f67f072e6a0f69ed5682677ffc (commit) from 90c480e3dffc916e862ae4d1e45ef4e8f8bcba66 (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 367ad7dee3c586f67f072e6a0f69ed5682677ffc Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Mon May 19 18:14:53 2025 +0000 LP2111283 Fix button type on bib ID/TCN search In the recent updates to the bib ID/TCN search page, the revised form's button was lacking a type attribute. This makes it default to the 'submit' type, which is what was intended, but our lint rules require us to declare that explicitly. This adds the missing type="submit" attribute. Release-note: Adds a missing button type attribute to satisfy lint rules 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/bib-by-ident.component.html b/Open-ILS/src/eg2/src/app/staff/cat/bib-by-ident.component.html index 7cf4ac55f8..ba6a1ffa4f 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/bib-by-ident.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/bib-by-ident.component.html @@ -29,7 +29,7 @@ (keyup.enter)="search()" [(ngModel)]="identValue" formControlName="bibIdentValue" class="form-control mx-2 w-auto" aria-describedby="bib-ident-status" /> - <button class="btn btn-primary" [disabled]="searchInProgress" (click)="search()"> + <button class="btn btn-primary" [disabled]="searchInProgress" (click)="search()" type="submit"> <span *ngIf="!searchInProgress" i18n>Search</span> <span *ngIf="searchInProgress" i18n>Searching...</span> </button> ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/cat/bib-by-ident.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User