MENDELU/Add dc.relation.funder to item view#1265
Merged
milanmajchrak merged 6 commits intocustomer/mendelufrom Mar 25, 2026
Merged
MENDELU/Add dc.relation.funder to item view#1265milanmajchrak merged 6 commits intocustomer/mendelufrom
milanmajchrak merged 6 commits intocustomer/mendelufrom
Conversation
Author
There was a problem hiding this comment.
Pull request overview
Adds a “Funder” field to simple item view pages (Publication + Untyped item) to surface dc.relation.funder, including i18n labels.
Changes:
- Adds
ds-item-page-funder-fieldinto the publication and untyped item simple page templates. - Registers/imports
ItemPageFunderFieldComponentin both base app and custom theme standalone item type components. - Adds i18n label
item.page.funderinen.json5andcs.json5.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/themes/custom/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts | Adds funder field component import to the themed untyped item standalone imports. |
| src/themes/custom/app/item-page/simple/item-types/publication/publication.component.ts | Adds funder field component import to the themed publication standalone imports. |
| src/assets/i18n/en.json5 | Adds English label for “Funder”. |
| src/assets/i18n/cs.json5 | Adds Czech label for “Funder” (with the usual commented English source line). |
| src/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts | Adds funder field component import to base untyped item standalone imports. |
| src/app/item-page/simple/item-types/untyped-item/untyped-item.component.html | Renders the new ds-item-page-funder-field in the untyped item page. |
| src/app/item-page/simple/item-types/publication/publication.component.ts | Adds funder field component import to base publication standalone imports. |
| src/app/item-page/simple/item-types/publication/publication.component.html | Renders the new ds-item-page-funder-field in the publication page. |
src/themes/custom/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts
Show resolved
Hide resolved
src/themes/custom/app/item-page/simple/item-types/publication/publication.component.ts
Show resolved
Hide resolved
src/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts
Show resolved
Hide resolved
src/app/item-page/simple/item-types/publication/publication.component.ts
Show resolved
Hide resolved
.../item-page/simple/field-components/specific-field/funder/item-page-funder-field.component.ts
Outdated
Show resolved
Hide resolved
.../item-page/simple/field-components/specific-field/funder/item-page-funder-field.component.ts
Outdated
Show resolved
Hide resolved
2 tasks
milanmajchrak
requested changes
Mar 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Problem description
Issue: https://github.com/dataquest-dev/dspace-customers/issues/512
Sync verification
If en.json5 or cs.json5 translation files were updated:
yarn run sync-i18n -t src/assets/i18n/cs.json5 -ito synchronize messages, and changes are included in this PR.Manual Testing (if applicable)
Copilot review