You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, no.
This is an open-source project, which is maintained by us in our spare time, so we do not plan any releases, we do them, when we have enough spare time and enough changes to warrant one...
This feature is change is rather complex in nature and requires extensive testing.
The change tracking is not working when we have multiple key fields for an entity, Is this a limitation ?
Example below works, The changes are updated and displayed in the object page
entity Books {
key ID : Integer;
title : String;
stock : Integer;
}
Whereas when you have multiple key field the The changes are not displayed in the object page
entity Books {
key ID : Integer;
key title : String;
stock : Integer;
}
The text was updated successfully, but these errors were encountered: