diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-07-23 11:56:05 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-07-23 11:56:05 -0400 |
commit | 3bcc0e3a8ce4ab67dff4b3d62191c346764aa351 (patch) | |
tree | 371e2b9c5687af8c8b29a05c8b714ed3020473a1 /src/fields/Doc.ts | |
parent | 0ea3c5b643a50de9cea673b769f5514fcef5d86b (diff) |
got rid of lots of console.logs(). fixed fonticon box to show a 'label' if defined otherwise 'title'. if neither, then it shows no tooltip.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 917a6853c..7e91a7761 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -566,7 +566,6 @@ export namespace Doc { export async function Zip(doc: Doc) { const { clone, map } = await Doc.MakeClone(doc, true); function replacer(key: any, value: any) { - console.log("Checkin: " + key); if (["cloneOf", "context", "cursors"].includes(key)) return undefined; else if (value instanceof Doc) { if (key !== "field" && Number.isNaN(Number(key))) { |