Linting.
This commit is contained in:
parent
60de9ccb28
commit
13222e2083
|
@ -218,7 +218,10 @@ class LinkController {
|
||||||
rowId: linkId,
|
rowId: linkId,
|
||||||
includeDocs: IncludeDocs.EXCLUDE,
|
includeDocs: IncludeDocs.EXCLUDE,
|
||||||
})
|
})
|
||||||
).filter(link => link.id !== row._id && link.fieldName === linkedSchema.name)
|
).filter(
|
||||||
|
link =>
|
||||||
|
link.id !== row._id && link.fieldName === linkedSchema.name
|
||||||
|
)
|
||||||
|
|
||||||
// The 1 side of 1:N is already related to something else
|
// The 1 side of 1:N is already related to something else
|
||||||
// You must remove the existing relationship
|
// You must remove the existing relationship
|
||||||
|
|
Loading…
Reference in New Issue