diff options
Diffstat (limited to 'src/fields/PDFField.ts')
-rw-r--r-- | src/fields/PDFField.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fields/PDFField.ts b/src/fields/PDFField.ts index 436c1cf2b..65e179894 100644 --- a/src/fields/PDFField.ts +++ b/src/fields/PDFField.ts @@ -1,6 +1,6 @@ import { BasicField } from "./BasicField"; import { Field, FieldId } from "./Field"; -import { observable } from "mobx" +import { observable } from "mobx"; import { Types } from "../server/Message"; @@ -27,7 +27,7 @@ export class PDFField extends BasicField<URL> { type: Types.PDF, data: this.Data.href, _id: this.Id - } + }; } @observable |