Skip to content

Commit 088d460

Browse files
[DURACOM-445] fix typo
1 parent 1f84dfe commit 088d460

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

config/config.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ item:
431431
link: https://ror.org
432432

433433
# Enable authority based relations in item page
434-
showAuthorithyRelations: false
434+
showAuthorityRelations: false
435435
# Community Page Config
436436
community:
437437
# Default tab to be shown when browsing a Community. Valid values are: comcols, search, or browse_<field>

src/app/item-page/simple/item-types/shared/item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class ItemComponent implements OnInit {
8888
protected router: Router) {
8989
this.mediaViewer = environment.mediaViewer;
9090
this.geospatialItemPageFieldsEnabled = environment.geospatialMapViewer.enableItemPageFields;
91-
this.areAuthorityRelationsEnabled = environment.item.showAuthorithyRelations;
91+
this.areAuthorityRelationsEnabled = environment.item.showAuthorityRelations;
9292
}
9393

9494
/**

src/config/default-app-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ export class DefaultAppConfig implements AppConfig {
404404
},
405405
// If true, the search result in item page will display relations based on authority.
406406
// If false,the search result in item page will display default DSpace relations.
407-
showAuthorithyRelations: false,
407+
showAuthorityRelations: false,
408408
};
409409

410410
// Community Page Config

src/config/item-config.interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ export interface ItemConfig extends Config {
2020

2121
metadataLinkViewPopoverData: MetadataLinkViewPopoverDataConfig
2222

23-
showAuthorithyRelations: boolean;
23+
showAuthorityRelations: boolean;
2424
}

src/environments/environment.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export const environment: BuildConfig = {
318318
],
319319
identifierSubtypes: [],
320320
},
321-
showAuthorithyRelations: false,
321+
showAuthorityRelations: false,
322322
},
323323
community: {
324324
defaultBrowseTab: 'search',

0 commit comments

Comments
 (0)