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'.
(cherry picked from commit 02f52c7d5c
)
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
09a4da7bff
commit
4dcf17314c
@@ -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