From: Jason Etheridge Date: Mon, 3 Oct 2022 04:02:56 +0000 (-0400) Subject: first attempt at changing some identifiers with our seed code X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=721b808e75a49a255f275143278f6b3084d11d8f;p=working%2FEvergreen.git first attempt at changing some identifiers with our seed code --- diff --git a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.css b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.css index 11e8804226..fa1948d4cc 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.css +++ b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.css @@ -1,6 +1,6 @@ -.eg-bib-summary .card-header { +.eg-bib-staff-view .card-header { padding: .25rem .5rem } diff --git a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.html b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.html index 2e49b19977..56438fa545 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.html +++ b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.html @@ -1,8 +1,8 @@ -
+
- Record Summary + Record Staff View (Deleted) diff --git a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.ts b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.ts index c150b73dc3..0a0236478b 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/bib-staff-view/bib-staff-view.component.ts @@ -7,11 +7,11 @@ import {ServerStoreService} from '@eg/core/server-store.service'; import {CatalogService} from '@eg/share/catalog/catalog.service'; @Component({ - selector: 'eg-bib-summary', - templateUrl: 'bib-summary.component.html', - styleUrls: ['bib-summary.component.css'] + selector: 'eg-bib-staff-view', + templateUrl: 'bib-staff-view.component.html', + styleUrls: ['bib-staff-view.component.css'] }) -export class BibSummaryComponent implements OnInit { +export class BibStaffViewComponent implements OnInit { initDone = false; hasCourse = false; @@ -50,7 +50,7 @@ export class BibSummaryComponent implements OnInit { ngOnInit() { - this.store.getItem('eg.cat.record.summary.collapse') + this.store.getItem('eg.cat.record.staff-view.collapse') .then(value => this.expand = !value) .then(_ => this.cat.fetchCcvms()) .then(_ => { @@ -66,7 +66,7 @@ export class BibSummaryComponent implements OnInit { } saveExpandState() { - this.store.setItem('eg.cat.record.summary.collapse', !this.expand); + this.store.setItem('eg.cat.record.staff-view.collapse', !this.expand); } loadSummary(): Promise {