diff options
author | bobzel <zzzman@gmail.com> | 2024-10-11 15:55:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-10-11 15:55:19 -0400 |
commit | 76abb174684f2cd231a0dd9f6b71484c16e0498a (patch) | |
tree | 8d824b7218440948008281b8d63784ad38e75bcb /src/fields/Doc.ts | |
parent | 66f2b03283a1e42c48b1c16b4344b730c0a2e9f3 (diff) |
fixes for quiz mode - comparisonbox renderSide fixes. scrolling doesn't propagate out of carousel or card views. fix for text with image Doc - now gets saved to UPDATE_CACHE working set.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 81241f9fe..45dfe233f 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -960,6 +960,19 @@ export namespace Doc { } } else if (field instanceof PrefetchProxy) { Doc.FindReferences(field.value, references, system); + } else if (field instanceof RichTextField) { + const re = /"docId"\s*:\s*"(.*?)"/g; + let match: string[] | null; + while ((match = re.exec(field.Data)) !== null) { + const urlString = match[1]; + if (urlString) { + const rdoc = DocServer.GetCachedRefField(urlString); + if (rdoc) { + references.add(rdoc); + Doc.FindReferences(rdoc, references, system); + } + } + } } } else if (field instanceof Promise) { // eslint-disable-next-line no-debugger |