From d7c9cb290a0ddf5f91ff2f37d4a3f3afcdd9808f Mon Sep 17 00:00:00 2001 From: Nima Behforouz Date: Mon, 10 Aug 2026 11:59:03 -0400 Subject: [PATCH] =?UTF-8?q?Corrections=20du=20th=C3=A8me=20DIAME?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/config.collspec.yml | 6 +++--- src/themes/diame/app/header/header.component.html | 2 +- .../item-types/untyped-item/untyped-item.component.ts | 2 +- src/themes/eager-themes.module.ts | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/config.collspec.yml b/config/config.collspec.yml index 54d67d4d65a..313e874e358 100644 --- a/config/config.collspec.yml +++ b/config/config.collspec.yml @@ -317,7 +317,7 @@ themes: # - name: BASE_THEME_NAME # - - name: 'diame' + - name: diame regex: '^/diame$' headTags: - tagName: link @@ -339,8 +339,8 @@ themes: rel: manifest href: assets/diame/images/favicons/manifest.webmanifest - - name: 'diame' - uuid: '463625e1-602d-4844-a94f-5df83c681054' + - name: diame + uuid: 463625e1-602d-4844-a94f-5df83c681054 headTags: - tagName: link attributes: diff --git a/src/themes/diame/app/header/header.component.html b/src/themes/diame/app/header/header.component.html index 0f9ca17d991..4430525ce16 100644 --- a/src/themes/diame/app/header/header.component.html +++ b/src/themes/diame/app/header/header.component.html @@ -10,7 +10,7 @@ >
diff --git a/src/themes/diame/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts b/src/themes/diame/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts index f7687941fe7..700c27bc407 100644 --- a/src/themes/diame/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts +++ b/src/themes/diame/app/item-page/simple/item-types/untyped-item/untyped-item.component.ts @@ -36,7 +36,7 @@ import {FullFileSectionComponent} from "../../../../../../../app/item-page/full/ /** * Component that represents an untyped Item page */ -@listableObjectComponent(Item, ViewMode.StandalonePage, Context.Any, 'collspec') +@listableObjectComponent(Item, ViewMode.StandalonePage, Context.Any, 'diame') @Component({ selector: 'ds-untyped-item', styleUrls: ['./untyped-item.component.scss'], diff --git a/src/themes/eager-themes.module.ts b/src/themes/eager-themes.module.ts index a892bcc5206..37042d42311 100644 --- a/src/themes/eager-themes.module.ts +++ b/src/themes/eager-themes.module.ts @@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'; import { EagerThemeModule as DSpaceEagerThemeModule } from './dspace/eager-theme.module'; // import { EagerThemeModule as CustomEagerThemeModule } from './custom/eager-theme.module'; -import { EagerThemeModule as CalypsoEagerThemeModule } from './collspec/eager-theme.module'; +import { EagerThemeModule as CollspecEagerThemeModule } from './collspec/eager-theme.module'; import { EagerThemeModule as DiameEagerThemeModule } from './diame/eager-theme.module'; /** @@ -16,7 +16,7 @@ import { EagerThemeModule as DiameEagerThemeModule } from './diame/eager-theme.m imports: [ DSpaceEagerThemeModule, // CustomEagerThemeModule, - CalypsoEagerThemeModule, + CollspecEagerThemeModule, DiameEagerThemeModule, ], })