diff options
author | eleanor-park <eleanor_park@brown.edu> | 2025-01-06 18:21:02 -0500 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2025-01-06 18:21:02 -0500 |
commit | f273c97121300eb9b242f7272cc1cc56c396ca8b (patch) | |
tree | d0086e411c206ee86637ed38a5a6eacb4f67ef8f /src/client/views/ViewBoxInterface.ts | |
parent | 1d62d867621b293c41ff8488ca5a3bd6010723d5 (diff) |
started a previous images display
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; } |