]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/marc-edit/fixed-fields-editor.component.ts
LP1959048: manual ng lint fixes
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / marc-edit / fixed-fields-editor.component.ts
1 import {Component, Input} from '@angular/core';
2 import {IdlService} from '@eg/core/idl.service';
3 import {OrgService} from '@eg/core/org.service';
4 import {MarcRecord} from './marcrecord';
5 import {MarcEditContext} from './editor-context';
6 import {TagTableService} from './tagtable.service';
7
8 /**
9  * MARC Fixed Fields Editor Component
10  */
11
12 @Component({
13   selector: 'eg-fixed-fields-editor',
14   templateUrl: './fixed-fields-editor.component.html'
15 })
16
17 export class FixedFieldsEditorComponent {
18
19     @Input() context: MarcEditContext;
20     get record(): MarcRecord { return this.context.record; }
21
22     constructor(
23         private idl: IdlService,
24         private org: OrgService,
25         private tagTable: TagTableService
26     ) {}
27 }
28