diff options
author | aidahosa1 <aisosa_idahosa@brown.edu> | 2024-09-10 10:54:29 -0400 |
---|---|---|
committer | aidahosa1 <aisosa_idahosa@brown.edu> | 2024-09-10 10:54:29 -0400 |
commit | 4e34335e600b5d9d29e8a4af99fda6b2a6d3ba69 (patch) | |
tree | a2abb796aaeac1588375c109dea1d3927bc55ef8 /src/client/views/FilterPanel.tsx | |
parent | 593a894cf3b707d60b4baf1c400f138bd8b3a783 (diff) |
more chat features
Diffstat (limited to 'src/client/views/FilterPanel.tsx')
-rw-r--r-- | src/client/views/FilterPanel.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/FilterPanel.tsx b/src/client/views/FilterPanel.tsx index 17c5cb173..ca4e4df84 100644 --- a/src/client/views/FilterPanel.tsx +++ b/src/client/views/FilterPanel.tsx @@ -51,10 +51,13 @@ interface filterProps { @observer export class FilterPanel extends ObservableReactComponent<filterProps> { @observable _selectedFacetHeaders = new Set<string>(); + public static Instance: FilterPanel; + constructor(props: any) { super(props); makeObservable(this); + FilterPanel.Instance = this; } /** |