diff options
Diffstat (limited to 'src/client/views/ViewBoxInterface.ts')
-rw-r--r-- | src/client/views/ViewBoxInterface.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/ViewBoxInterface.ts b/src/client/views/ViewBoxInterface.ts index df08f2564..a66a20cf6 100644 --- a/src/client/views/ViewBoxInterface.ts +++ b/src/client/views/ViewBoxInterface.ts @@ -60,5 +60,6 @@ export abstract class ViewBoxInterface<P> extends ObservableReactComponent<React search?: (str: string, bwd?: boolean, clear?: boolean) => boolean; dontRegisterView?: () => boolean; // KeyValueBox's don't want to register their views isUnstyledView?: () => boolean; // SchemaView and KeyValue are unstyled -- not titles, no opacity, no animations - componentAIView?: (top: number) => JSX.Element; + componentAIView?: () => JSX.Element; + componentAIViewHistory?: () => JSX.Element; } |