[GIT] Evergreen ILS branch rel_3_14 updated. 32417c8f1389b5f38c45b6d037a9aa2f6a4efd48

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 32417c8f1389b5f38c45b6d037a9aa2f6a4efd48 (commit) from 3d8ff800b427af2e24c5f64aef7ac1939186659a (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 32417c8f1389b5f38c45b6d037a9aa2f6a4efd48 Author: Dan Briem <dbriem@harrisonpl.org> Date: Tue Jun 24 18:56:34 2025 +0000 LP#2115261 Expand Report Template Description Box Replace description text inputs with textareas in the report definition interface for better visibility. Release-note: Makes report template description field more visible and browser-friendly. Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: John Amundson <jamundson@cwmars.org> Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org> diff --git a/Open-ILS/src/eg2/src/app/staff/reporter/full/definition.component.html b/Open-ILS/src/eg2/src/app/staff/reporter/full/definition.component.html index d7bc2ec3bd..e65619e462 100644 --- a/Open-ILS/src/eg2/src/app/staff/reporter/full/definition.component.html +++ b/Open-ILS/src/eg2/src/app/staff/reporter/full/definition.component.html @@ -44,14 +44,19 @@ <label class="form-label" for="report-description" i18n>Report Description</label> </div> <div class="col-lg-3"> - <input [disabled]="isView" id="report-description" class="form-control" [(ngModel)]="description" (ngModelChange)="dirty()" /> + <textarea id="report-description" class="form-control" + [(ngModel)]="description" (ngModelChange)="dirty()" + [disabled]="isView"> + </textarea> </div> <div class="col-sm-2"> <label class="form-label" for="template-description" i18n>Template Description</label> </div> <div class="col-lg-3"> - <input *ngIf="templ" disabled id="template-description" class="form-control" [ngModel]="templ.description"/> + <textarea *ngIf="templ" id="template-description" class="form-control" + [ngModel]="templ.description" disabled> + </textarea> </div> </div> ----------------------------------------------------------------------- Summary of changes: .../eg2/src/app/staff/reporter/full/definition.component.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User