mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Fixes on feedback
This commit is contained in:
@@ -117,7 +117,7 @@ export class SubmissionResponseParsingService extends BaseResponseParsingService
|
||||
.forEach((metdadataId) => {
|
||||
const entry = item.sections[sectionId][metdadataId];
|
||||
// If entry is not an array, for sure is not a section of type form
|
||||
if (isNotNull(entry) && Array.isArray(entry)) {
|
||||
if (Array.isArray(entry)) {
|
||||
normalizedSectionData[metdadataId] = [];
|
||||
entry.forEach((valueItem) => {
|
||||
// Parse value and normalize it
|
||||
|
Reference in New Issue
Block a user