diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-14 18:08:47 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-14 18:08:47 -0400 |
| commit | 077a38dc22f6082974e639f8a020ceb179116958 (patch) | |
| tree | ec5135f7b7c7db334dd6076cbc2c6fe84b49e926 /src/fields | |
| parent | 291d2fb28fa878eff190daf813854d9c0477ccb6 (diff) | |
fixed some edge cses with richTextMenu synchronization. added author field to delegates
Diffstat (limited to 'src/fields')
| -rw-r--r-- | src/fields/Doc.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index ea53bc9a2..b530b1cf7 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -781,6 +781,7 @@ export namespace Doc { if (doc) { const delegate = new Doc(id, true); delegate.proto = doc; + delegate.author = Doc.CurrentUserEmail; title && (delegate.title = title); return delegate; } |
