Align posted dashboard data to new data denormalized format

This commit is contained in:
Stephen Abello
2026-01-14 11:15:15 +01:00
parent 410dc152d7
commit d248524cc8
4 changed files with 11 additions and 5 deletions

View File

@@ -146,7 +146,10 @@ class IboGrid extends HTMLElement {
Serialize() {
const aSlots = this.getSlots();
return aSlots.map(oSlot => {
return oSlot.Serialize();
const sDashletId = oSlot.oDashlet.sDashletId;
return {
[sDashletId]: oSlot.Serialize(),
};
});
}
}