bens...@gmail.com
unread,Oct 8, 2024, 3:55:11 PM10/8/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DSpace Technical Support
dspace 7.6.2
using the custom theme.
If I modify untyped-item.component.ts in dspace-angular-dspace-7.6.2/src/themes/custom/app/item-page/simple/item-types/untyped-item
styleUrls: ['./untyped-item.component.scss'],
//styleUrls: ['../../../../../../../app/item-page/simple/item-types/untyped-item/untyped-item.component.scss'],
templateUrl: './untyped-item.component.html',
//templateUrl: '../../../../../../../app/item-page/simple/item-types/untyped-item/untyped-item.component.html',
It does not use the local copy of untyped-item.component.html. It is still using the one in
dspace-angular-dspace-7.6.2/src/app/item-page/simple/item-types/untyped-item/
but if I modify footer.component.ts in dspace-angular-dspace-7.6.2/src/themes/custom/app/footer
styleUrls: ['./footer.component.scss'],
//styleUrls: ['../../../../app/footer/footer.component.scss'],
templateUrl: './footer.component.html'
//templateUrl: '../../../../app/footer/footer.component.html'
It works using the local copy of the footer.component.html
What am I missing to get it to work?