mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
[TLC-674] Hide empty duplicate section UNLESS config overrides
A new config property allows the user to force the duplicate section to be displayed even if there are no duplicates as sometimes this is useful information to a reviewer or submitter
This commit is contained in:
@@ -5,6 +5,10 @@ interface AutosaveConfig extends Config {
|
||||
timer: number;
|
||||
}
|
||||
|
||||
interface DuplicateDetectionConfig extends Config {
|
||||
alwaysShowSection: boolean;
|
||||
}
|
||||
|
||||
interface TypeBindConfig extends Config {
|
||||
field: string;
|
||||
}
|
||||
@@ -29,6 +33,7 @@ export interface ConfidenceIconConfig extends Config {
|
||||
|
||||
export interface SubmissionConfig extends Config {
|
||||
autosave: AutosaveConfig;
|
||||
duplicateDetection: DuplicateDetectionConfig;
|
||||
typeBind: TypeBindConfig;
|
||||
icons: IconsConfig;
|
||||
}
|
||||
|
Reference in New Issue
Block a user