diff options
author | eperelm2 <emily_perelman@brown.edu> | 2023-08-04 11:54:03 -0400 |
---|---|---|
committer | eperelm2 <emily_perelman@brown.edu> | 2023-08-04 11:54:03 -0400 |
commit | 082a280ed989007d84c8619438889c64a6fedb14 (patch) | |
tree | 48059d884669ffe295caaecf93383abd2117b0bd /src/client/views/MainView.tsx | |
parent | 93854ed0917346720ff519553f909cee3561ec7b (diff) |
filters - starting to add filterable field
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index cbaa763f5..d9136dbd4 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -813,7 +813,7 @@ export class MainView extends React.Component { {this.dockingContent} {this._hideUI ? null : ( - <div className="mainView-propertiesDragger" key="props" onPointerDown={this.onPropertiesPointerDown} style={{ right: this.propertiesWidth() - 1, background: 'linen' }}> + <div className="mainView-propertiesDragger" key="props" onPointerDown={this.onPropertiesPointerDown} style={{ right: this.propertiesWidth() - 1 }}> <FontAwesomeIcon icon={this.propertiesWidth() < 10 ? 'chevron-left' : 'chevron-right'} color={this.colorScheme === ColorScheme.Dark ? Colors.WHITE : Colors.BLACK} size="sm" /> </div> )} |