
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_13 has been updated via 6daab084f3b7e995a144873789c755c12514bc33 (commit) from 5a84eb972c62dffe2074fd2a02b2740734e6297a (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 6daab084f3b7e995a144873789c755c12514bc33 Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Tue Apr 1 15:28:12 2025 +0000 LP2088000 Follow-up: lint Lint fix for parts component changes. Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/record/parts.component.ts b/Open-ILS/src/eg2/src/app/staff/catalog/record/parts.component.ts index a17a87e7e6..b65788be20 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/record/parts.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/catalog/record/parts.component.ts @@ -67,7 +67,7 @@ export class PartsComponent implements OnInit { if (sort.length) { // Sort provided by grid. // Labels sort by label_sortkey instead of label - let sort_name = sort[0].name === 'label' ? 'label_sortkey' : sort[0].name; + const sort_name = sort[0].name === 'label' ? 'label_sortkey' : sort[0].name; orderBy.bmp = sort_name + ' ' + sort[0].dir; } else { orderBy.bmp = 'label_sortkey'; ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/catalog/record/parts.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS