diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-05-09 00:02:30 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-05-09 00:02:30 -0400 |
commit | 2f5f13946cf0a1ec87efddbfbbc6a9fd878da924 (patch) | |
tree | ea9ec90561f73ed1c977e0538699c5f53b3c4712 /src/fields/Doc.ts | |
parent | 0766ba00727e9e13ced2e16cfb049d49711fa738 (diff) | |
parent | fa4d377b53c9ca31d8900d9c11bd25be57025962 (diff) |
Merge branch 'nathan-starter' of https://github.com/brown-dash/Dash-Web into nathan-starter
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 725221a66..fe044c035 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -102,7 +102,7 @@ export namespace Field { export function Copy(field: any) { return field instanceof ObjectField ? ObjectField.MakeCopy(field) : field; } - UndoManager.SetFieldPrinter(toJavascriptString); + UndoManager.SetFieldPrinter(toString); } export type FieldType = number | string | boolean | ObjectField | RefField; export type Opt<T> = T | undefined; |