Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/config.collspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ themes:
# - name: BASE_THEME_NAME
#

- name: 'diame'
- name: diame
regex: '^/diame$'
headTags:
- tagName: link
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/themes/diame/app/header/header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>
<a
class="logo-brand-group"
routerLink="/collections/463625e1-602d-4844-a94f-5df83c681054"
routerLink="/diame"
[attr.aria-label]="'home.title' | translate"
>
<div class="logo-img-part">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
4 changes: 2 additions & 2 deletions src/themes/eager-themes.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand All @@ -16,7 +16,7 @@ import { EagerThemeModule as DiameEagerThemeModule } from './diame/eager-theme.m
imports: [
DSpaceEagerThemeModule,
// CustomEagerThemeModule,
CalypsoEagerThemeModule,
CollspecEagerThemeModule,
DiameEagerThemeModule,
],
})
Expand Down