Merge pull request #1174 from Budibase/bug/relationship-uniqueness
Relationship fix
This commit is contained in:
commit
a8ac6e9381
|
@ -13,7 +13,6 @@
|
|||
if (production) {
|
||||
return `${appUrl}/${uri}`
|
||||
} else {
|
||||
|
||||
return `${window.location.origin}/${uri}`
|
||||
}
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@ async function getLinksForRows(appId, rows) {
|
|||
return getUniqueByProp(
|
||||
responses
|
||||
// create a unique ID which we can use for getting only unique ones
|
||||
.map(el => ({ ...el, unique: el.id + el.fieldName })),
|
||||
.map(el => ({ ...el, unique: el.id + el.thisId + el.fieldName })),
|
||||
"unique"
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue