mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 04:53:06 +00:00
Fixes on feedback
This commit is contained in:
@@ -117,7 +117,7 @@ export class SubmissionResponseParsingService extends BaseResponseParsingService
|
|||||||
.forEach((metdadataId) => {
|
.forEach((metdadataId) => {
|
||||||
const entry = item.sections[sectionId][metdadataId];
|
const entry = item.sections[sectionId][metdadataId];
|
||||||
// If entry is not an array, for sure is not a section of type form
|
// 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] = [];
|
normalizedSectionData[metdadataId] = [];
|
||||||
entry.forEach((valueItem) => {
|
entry.forEach((valueItem) => {
|
||||||
// Parse value and normalize it
|
// Parse value and normalize it
|
||||||
|
@@ -108,7 +108,7 @@ export class ChipsComponent implements OnChanges {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.cdr.detectChanges();
|
this.cdr.detectChanges();
|
||||||
if (!chipsItem.hasIcons() || (chipsItem.hasIcons() && !chipsItem.hasVisibleIcons()) || field) {
|
if (!chipsItem.hasIcons() || !chipsItem.hasVisibleIcons() || field) {
|
||||||
this.tipText = textToDisplay;
|
this.tipText = textToDisplay;
|
||||||
tooltip.open();
|
tooltip.open();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user