Skip to content

Commit

Permalink
Merge pull request #310 from cotype/bugfix/richtext-internal-links
Browse files Browse the repository at this point in the history
fix(core): load references for internal links in richtext fields
  • Loading branch information
jenslonkowski committed Aug 13, 2021
2 parents f9384e5 + f25f7e1 commit f3955b4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/persistence/adapter/knex/KnexContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ export default class KnexContent implements ContentAdapter {
);
}
}
if (value.type === "richtext") {
hasInverseRefs = true;
}
});
});

Expand Down

0 comments on commit f3955b4

Please sign in to comment.