diff options
Diffstat (limited to 'src/client/util/DropConverter.ts')
-rw-r--r-- | src/client/util/DropConverter.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/util/DropConverter.ts b/src/client/util/DropConverter.ts index 57c79cff3..0ede44298 100644 --- a/src/client/util/DropConverter.ts +++ b/src/client/util/DropConverter.ts @@ -92,7 +92,8 @@ export function makeUserTemplateButton(doc: Doc) { * Similar to makeUserTemplateButton, but rather than creating a draggable button for the template, it takes in * an ImageField that will display. */ -export function makeUserTemplateImage(doc: Doc, image: ImageField) { +export function makeUserTemplateImage(doc: Doc, imageHref: string | undefined) { + const image = imageHref ?? 'http://www.cs.brown.edu/~bcz/noImage.png'; const layoutDoc = doc; // doc.layout instanceof Doc && doc.layout.isTemplateForField ? doc.layout : doc; if (layoutDoc.type !== DocumentType.FONTICON) { !layoutDoc.isTemplateDoc && makeTemplate(layoutDoc); |