
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 1f5d2c8e0449423dfd3a80181e51d2ddb19f41eb (commit) from 6493ac73e950a8d3bd682279a1f9bd7d129f301d (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 1f5d2c8e0449423dfd3a80181e51d2ddb19f41eb 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