Fix relationships not being saved for new rows
This commit is contained in:
parent
33b8005493
commit
9b21eb78b6
|
@ -140,7 +140,7 @@ class LinkController {
|
|||
if (linkId && linkId !== "" && linkDocIds.indexOf(linkId) === -1) {
|
||||
// first check the doc we're linking to exists
|
||||
try {
|
||||
await Promise.all([this._db.get(linkId), this._db.get(row._id)])
|
||||
await this._db.get(linkId)
|
||||
} catch (err) {
|
||||
// skip links that don't exist
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue