aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r--src/client/views/PropertiesView.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index a8b65c114..1c6ad26e6 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -908,19 +908,19 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
</div>}
</div>
- <div className="propertiesView-settings">
- <div className="propertiesView-settings-title"
+ <div className="propertiesView-sharing">
+ <div className="propertiesView-sharing-title"
onPointerDown={action(() => this.openFilters = !this.openFilters)}
style={{ backgroundColor: this.openFilters ? "black" : "" }}>
Filters
- <div className="propertiesView-settings-title-icon">
+ <div className="propertiesView-sharing-title-icon">
<FontAwesomeIcon icon={this.openFilters ? "caret-down" : "caret-right"} size="lg" color="white" />
</div>
</div>
{!this.openFilters ? (null) :
- <div className="propertiesView-settings-content">
+ <div className="propertiesView-sharing-content">
<DocumentView
- Document={Doc.UserDoc().myFilter as any as Doc}
+ Document={Doc.UserDoc().currentFilter as any as Doc}
DataDoc={undefined}
addDocument={undefined}
addDocTab={returnFalse}