mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
fix(submission): Submission scope naming fixed
According to the documentation, the value for the <visibility> property is 'submission' in the 'submission-forms.xml'. Without this change, an empty input field will never be marked as an error, even if the field is marked as 'required'.
This commit is contained in:
@@ -163,7 +163,7 @@ public class DCInput {
|
||||
* The scope of the input sets, this restricts hidden metadata fields from
|
||||
* view by the end user during submission.
|
||||
*/
|
||||
public static final String SUBMISSION_SCOPE = "submit";
|
||||
public static final String SUBMISSION_SCOPE = "submission";
|
||||
|
||||
/**
|
||||
* Class constructor for creating a DCInput object based on the contents of
|
||||
|
Reference in New Issue
Block a user