From 5cffe7b240964bebb5a913f68a0c41f6e885058f Mon Sep 17 00:00:00 2001 From: futa-ikeda Date: Fri, 3 Jan 2025 14:25:46 -0500 Subject: [PATCH] Use proper key for DOI field download --- app/institutions/dashboard/preprints/controller.ts | 2 +- app/institutions/dashboard/projects/controller.ts | 2 +- app/institutions/dashboard/registrations/controller.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/institutions/dashboard/preprints/controller.ts b/app/institutions/dashboard/preprints/controller.ts index 1db306fdd2..0be2f00755 100644 --- a/app/institutions/dashboard/preprints/controller.ts +++ b/app/institutions/dashboard/preprints/controller.ts @@ -40,7 +40,7 @@ export default class InstitutionDashboardPreprints extends Controller { { // DOI name: this.intl.t('institutions.dashboard.object-list.table-headers.doi'), type: 'doi', - propertyPathKey: 'resourceIdentifier', + propertyPathKey: 'sameAs', }, { // License name: this.intl.t('institutions.dashboard.object-list.table-headers.license'), diff --git a/app/institutions/dashboard/projects/controller.ts b/app/institutions/dashboard/projects/controller.ts index 7d4b00310c..3851439192 100644 --- a/app/institutions/dashboard/projects/controller.ts +++ b/app/institutions/dashboard/projects/controller.ts @@ -40,7 +40,7 @@ export default class InstitutionDashboardProjects extends Controller { { // DOI name: this.intl.t('institutions.dashboard.object-list.table-headers.doi'), type: 'doi', - propertyPathKey: 'resourceIdentifier', + propertyPathKey: 'sameAs', }, { // Storage location name: this.intl.t('institutions.dashboard.object-list.table-headers.storage_location'), diff --git a/app/institutions/dashboard/registrations/controller.ts b/app/institutions/dashboard/registrations/controller.ts index 5b56dfbc3d..09bc39639c 100644 --- a/app/institutions/dashboard/registrations/controller.ts +++ b/app/institutions/dashboard/registrations/controller.ts @@ -39,7 +39,7 @@ export default class InstitutionDashboardRegistrations extends Controller { { // DOI name: this.intl.t('institutions.dashboard.object-list.table-headers.doi'), type: 'doi', - propertyPathKey: 'resourceIdentifier', + propertyPathKey: 'sameAs', }, { // Storage location name: this.intl.t('institutions.dashboard.object-list.table-headers.storage_location'),