[GIT] Evergreen ILS branch main updated. dc7df4a608dd502856a9d6b4c403dfca76ee8f87

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 dc7df4a608dd502856a9d6b4c403dfca76ee8f87 (commit) from ab2be5d91aa65d62b01f987db466affd7860c309 (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 dc7df4a608dd502856a9d6b4c403dfca76ee8f87 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