We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6406fb9 commit c59a281Copy full SHA for c59a281
cds-plugin.js
@@ -23,7 +23,9 @@ cds.on('loaded', m => {
23
for (let e in elms) if (elms[e].key) keys.push(e)
24
25
// Add association to ChangeView...
26
- const on = [...changes.on]; keys.forEach((k, i) => { i && on.push('||'); on.push({ ref: [k] }) })
+ const on = [...changes.on]; keys.forEach((k, i) => { i && on.push('||'); on.push({
27
+ ref: k === 'up_' ? [k,'ID'] : [k] // REVISIT: up_ handling is a dirty hack for now
28
+ })})
29
const assoc = { ...changes, on }
30
const query = entity.projection || entity.query?.SELECT
31
if (query) {
0 commit comments