Skip to content

Commit

Permalink
[ACS-5645] update aspect issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnukritiGL committed Oct 20, 2023
1 parent a1adc93 commit 5212112
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,10 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {

this.cardViewContentUpdateService.updatedAspect$
.pipe(debounceTime(500), takeUntil(this.onDestroy$))
.subscribe((node) => this.loadProperties(node));
.subscribe((node) => {
this.node.aspectNames = node.aspectNames;
this.loadProperties(node);
});

this.loadProperties(this.node);
this.hasAllowableOperations = this.contentService.hasAllowableOperations(this.node, AllowableOperationsEnum.UPDATE);
Expand Down

0 comments on commit 5212112

Please sign in to comment.