LP1936233 Item status default to summary tab
authorBill Erickson <berickxx@gmail.com>
Tue, 3 Aug 2021 15:46:12 +0000 (11:46 -0400)
committerBill Erickson <berickxx@gmail.com>
Mon, 24 Oct 2022 15:07:24 +0000 (11:07 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/staff/cat/item/status.component.ts

index 3dd047a..f9a9dac 100644 (file)
@@ -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) {