Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lazy loading of Change History #12

Merged
merged 12 commits into from
Oct 12, 2023
4 changes: 3 additions & 1 deletion index.cds
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ aspect aspect @(UI.Facets: [{
$Type : 'UI.ReferenceFacet',
ID : 'ChangeHistoryFacet',
Label : '{i18n>ChangeHistoryList}',
Target: 'changes/@UI.PresentationVariant'
Target: 'changes/@UI.PresentationVariant',
//TODO: Use for lazy-loading once Fiori fixes bugs and v1.120 is released
//![@UI.PartOfPreview]: false
}]) {
// Essentially: Association to many Changes on changes.changeLog.entityKey = ID;
changes : Association to many ChangeView on changes.entityKey = ID;
Expand Down
Loading