diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-11 13:51:44 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-11 13:51:44 -0400 |
| commit | 8a1267faf796b2e2a30a6ba9f86879854e9ee983 (patch) | |
| tree | e29fa40db18716ae95c16c7e0e6d2ae61b5ad05a /src/client/util/DropConverter.ts | |
| parent | cb426bf2a9d90955195ab2e66f845a9e39df2cf3 (diff) | |
removed arrangeItems context button for collections to make it a funciton on drop instead of a reaction. Converted isLinkButton to be an onClick script. got rid of unused PARAMS field on templates. fixed PresElementBox rendering of embedded docs.
Diffstat (limited to 'src/client/util/DropConverter.ts')
| -rw-r--r-- | src/client/util/DropConverter.ts | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/client/util/DropConverter.ts b/src/client/util/DropConverter.ts index 7c209d1e0..2e1d6ba23 100644 --- a/src/client/util/DropConverter.ts +++ b/src/client/util/DropConverter.ts @@ -33,15 +33,7 @@ function makeTemplate(doc: Doc, first: boolean = true, rename: Opt<string> = und let any = false; docs.forEach(d => { if (!StrCast(d.title).startsWith('-')) { - const params = StrCast(d.title) - .match(/\(([a-zA-Z0-9._\-]*)\)/)?.[1] - .replace('()', ''); - if (params) { - any = makeTemplate(d, false) || any; - d.PARAMS = params; - } else { - any = Doc.MakeMetadataFieldTemplate(d, Doc.GetProto(layoutDoc)) || any; - } + any = Doc.MakeMetadataFieldTemplate(d, Doc.GetProto(layoutDoc)) || any; } else if (d.type === DocumentType.COL || d.data instanceof RichTextField) { any = makeTemplate(d, false) || any; } |
