diff --git a/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.html b/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.html index 23a2735e4..7737674be 100644 --- a/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.html +++ b/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.html @@ -54,6 +54,7 @@
+ diff --git a/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.ts b/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.ts index 08b8d119e..788540686 100644 --- a/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.ts +++ b/projects/admin/src/app/record/brief-view/documents-brief-view/documents-brief-view.component.ts @@ -16,6 +16,7 @@ */ import { Component, Input } from '@angular/core'; +import { TranslateService } from '@ngx-translate/core'; import { ResultItem } from '@rero/ng-core'; @Component({ diff --git a/projects/admin/src/app/record/detail-view/document-detail-view/document-detail-view.component.html b/projects/admin/src/app/record/detail-view/document-detail-view/document-detail-view.component.html index 417e79770..ecb23294c 100644 --- a/projects/admin/src/app/record/detail-view/document-detail-view/document-detail-view.component.html +++ b/projects/admin/src/app/record/detail-view/document-detail-view/document-detail-view.component.html @@ -96,30 +96,7 @@

{{ altgr_title }}

- - -
-
- {{ getPartOfLabel(hostDocument) }} -
-
- -
-
-
-
+ diff --git a/projects/public-search/src/app/document-brief/document-brief.component.html b/projects/public-search/src/app/document-brief/document-brief.component.html index b54cee4fb..20d28d3b3 100644 --- a/projects/public-search/src/app/document-brief/document-brief.component.html +++ b/projects/public-search/src/app/document-brief/document-brief.component.html @@ -66,6 +66,7 @@

{{record.explanation|json}}
+ diff --git a/projects/shared/src/lib/shared.module.ts b/projects/shared/src/lib/shared.module.ts index 274c32472..260500745 100644 --- a/projects/shared/src/lib/shared.module.ts +++ b/projects/shared/src/lib/shared.module.ts @@ -37,6 +37,7 @@ import { PersonBriefComponent } from './view/brief/person-brief/person-brief.com import { ItemHoldingsCallNumberPipe } from './pipe/item-holdings-call-number.pipe'; import { InheritedCallNumberComponent } from './view/inherited-call-number/inherited-call-number.component'; import { ThumbnailComponent } from './view/thumbnail/thumbnail.component'; +import { PartOfComponent } from './view/brief/part-of/part-of.component'; @NgModule({ declarations: [ @@ -55,7 +56,8 @@ import { ThumbnailComponent } from './view/thumbnail/thumbnail.component'; UrlActivePipe, ItemHoldingsCallNumberPipe, InheritedCallNumberComponent, - ThumbnailComponent + ThumbnailComponent, + PartOfComponent ], exports: [ CommonModule, @@ -75,7 +77,8 @@ import { ThumbnailComponent } from './view/thumbnail/thumbnail.component'; Nl2brPipe, ItemHoldingsCallNumberPipe, InheritedCallNumberComponent, - ThumbnailComponent + ThumbnailComponent, + PartOfComponent ], imports: [ CommonModule, diff --git a/projects/shared/src/public-api.ts b/projects/shared/src/public-api.ts index 843ece19c..0cc89dda6 100644 --- a/projects/shared/src/public-api.ts +++ b/projects/shared/src/public-api.ts @@ -40,6 +40,7 @@ export * from './lib/shared.module'; export * from './lib/view/brief/contribution-brief/contribution-brief.component'; export * from './lib/view/brief/contribution-sources/contribution-sources.component'; export * from './lib/view/brief/organisation-brief/organisation-brief.component'; +export * from './lib/view/brief/part-of/part-of.component'; export * from './lib/view/brief/person-brief/person-brief.component'; export * from './lib/view/inherited-call-number/inherited-call-number.component'; export * from './lib/view/thumbnail/thumbnail.component';