diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-05-11 02:08:38 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-05-11 02:08:38 -0400 |
commit | 59678e34dad0b6587f28ec642c84f6c6ee06543b (patch) | |
tree | 2597f29d9dca5dbbd8f29be589f56d7f005c927d /src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx | |
parent | 6e66ab2ab9b5b6f988230aac83ac712b43ccfe3a (diff) |
firefly templates correctly loading
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx b/src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx index a7270e540..e94ddfc15 100644 --- a/src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx +++ b/src/client/views/nodes/DataVizBox/DocCreatorMenu/Menu/TemplatePreviewBox.tsx @@ -19,8 +19,8 @@ import { ImageCast } from "../../../../../../fields/Types"; export interface TemplatePreviewBoxProps { template: Template; menu: DocCreatorMenu; - leftButtonOpts?: [icon: IconProp, func: (template: Template) => void] - rightButtonOpts?: [icon: IconProp, func: (template: Template) => void] + leftButtonOpts?: [icon: IconProp, func: (...args: any) => void] + rightButtonOpts?: [icon: IconProp, func: (...args: any) => void] } export class TemplatePreviewBox extends ObservableReactComponent<TemplatePreviewBoxProps> { |