Skip to content

Commit 1883d79

Browse files
[DSC-1529] resolve conflicts with maintenance branch
1 parent 42908fc commit 1883d79

4 files changed

Lines changed: 15 additions & 0 deletions

File tree

src/assets/i18n/en.json5

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7376,4 +7376,7 @@
73767376
"form.other-information.selection.data-crispj_coinvestigator_affiliation": "Affiliation",
73777377

73787378
"form.other-information.selection.alternative-names": "Select alternative name",
7379+
7380+
"meta.tag.missing.description": "No description available",
7381+
73797382
}

src/config/app-config.interface.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import { AttachmentRenderingConfig } from './attachment-rendering.config';
3333
import { SearchResultConfig } from './search-result-config.interface';
3434
import { MiradorConfig } from './mirador-config.interfaces';
3535
import { LoaderConfig } from './loader-config.interfaces';
36+
import { MetaTagFallbacksConfig } from './metatag-fallbacks.config';
3637

3738
interface AppConfig extends Config {
3839
ui: UIServerConfig;
@@ -72,6 +73,7 @@ interface AppConfig extends Config {
7273
searchResult: SearchResultConfig;
7374
mirador: MiradorConfig;
7475
loader: LoaderConfig;
76+
metaTagFallbacksConfig: MetaTagFallbacksConfig
7577
}
7678

7779
/**

src/config/default-app-config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,4 +768,9 @@ export class DefaultAppConfig implements AppConfig {
768768
warningMessageDelay: 5000, // 5 seconds
769769
errorMessageDelay: 15000, // 15 seconds
770770
};
771+
772+
metaTagFallbacksConfig = {
773+
logo: '/assets/images/dspace-cris-logo.png',
774+
description: 'DSpace is the most widely used repository software with more than 3000 installations around the world. It is free, open source and completely customisable to fit the needs of any organisation.'
775+
};
771776
}

src/environments/environment.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,4 +583,9 @@ export const environment: BuildConfig = {
583583
warningMessageDelay: 1000,
584584
errorMessageDelay: 2000,
585585
},
586+
587+
metaTagFallbacksConfig: {
588+
logo: '/assets/images/dspace-cris-logo.png',
589+
description: 'DSpace is the most widely used repository software with more than 3000 installations around the world. It is free, open source and completely customisable to fit the needs of any organisation.'
590+
}
586591
};

0 commit comments

Comments
 (0)