From 0bea8febc414ea6be440d6af593d1e14225acf5a Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 3 Aug 2021 11:46:12 -0400 Subject: [PATCH] LP1936233 Item status default to summary tab Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts index 3dd047a1a5..f9a9dacf5f 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts @@ -178,7 +178,7 @@ export class ItemStatusComponent implements OnInit, AfterViewInit { // Avoid watching for changes until after ngOnInit is complete // so we don't grab the same copy twice. this.route.paramMap.subscribe((params: ParamMap) => { - this.tab = params.get('tab') || 'list'; + this.tab = params.get('tab') || 'summary'; const id = +params.get('id'); if (id && id !== this.currentItemId) { -- 2.11.0