Skip to content

Commit

Permalink
Fix displaying DocumentationUNID on details tail
Browse files Browse the repository at this point in the history
(reference #56)
  • Loading branch information
piotrzarzycki21 committed Jun 8, 2024
1 parent 996c2c9 commit 63f03bf
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,9 @@ package Super.Human.Portal_Royale.views.modules.DocumentationForm.DocumentationF
items = [];
for (var i:int=0; i < json.documents.length; i++)
{
var item:DocumentationFormVO = new DocumentationFormVO();
items.push(
DocumentationFormVO.getDocumentationFormVO(json.documents[i])
);
item.showUnid = this.showUnid;
var item:DocumentationFormVO = DocumentationFormVO.getDocumentationFormVO(json.documents[i]);
item.showUnid = this.showUnid;
items.push(item);
}

this.dispatchEvent(new Event(EVENT_ITEM_UPDATED));
Expand Down

0 comments on commit 63f03bf

Please sign in to comment.