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

@@ -51,7 +51,10 @@ class IboGridSlot extends HTMLElement {
const aDashletData = oDashlet ? oDashlet.Serialize() : {};
return {...aSlotData, ...aDashletData};
return {
...aSlotData,
dashlet: {...aDashletData}
};
}
static observedAttributes = ['gs-x', 'gs-y', 'gs-w', 'gs-h'];