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.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index 92b52ed5b..8e1e9ea15 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -73,7 +73,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
@observable openFields: boolean = true;
@observable openLayout: boolean = false;
@observable openContexts: boolean = true;
- @observable openBacklinks: boolean = true;
+ @observable openLinks: boolean = true;
@observable openAppearance: boolean = true;
@observable openTransform: boolean = true;
@observable openFilters: boolean = true; // should be false
@@ -282,7 +282,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
return !this.selectedDoc ? (null) : <PropertiesDocContextSelector Document={this.selectedDoc} hideTitle={true} addDocTab={(doc, where) => CollectionDockingView.AddSplit(doc, "right")} />;
}
- @computed get backlinks() {
+ @computed get links() {
return !this.selectedDoc ? (null) : <PropertiesDocBacklinksSelector Document={this.selectedDoc} hideTitle={true} addDocTab={(doc, where) => CollectionDockingView.AddSplit(doc, "right")} />;
}
@@ -1086,17 +1086,17 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
</div>;
}
- @computed get backlinksSubMenu() {
+ @computed get linksSubMenu() {
return <div className="propertiesView-contexts">
<div className="propertiesView-contexts-title"
- onPointerDown={action(() => this.openBacklinks = !this.openBacklinks)}
- style={{ backgroundColor: this.openBacklinks ? "black" : "" }}>
- Backlinks
+ onPointerDown={action(() => this.openLinks = !this.openLinks)}
+ style={{ backgroundColor: this.openLinks ? "black" : "" }}>
+ Linked To
<div className="propertiesView-contexts-title-icon">
- <FontAwesomeIcon icon={this.openBacklinks ? "caret-down" : "caret-right"} size="lg" color="white" />
+ <FontAwesomeIcon icon={this.openLinks ? "caret-down" : "caret-right"} size="lg" color="white" />
</div>
</div>
- {this.openBacklinks ? <div className="propertiesView-contexts-content" >{this.backlinks}</div> : null}
+ {this.openLinks ? <div className="propertiesView-contexts-content" >{this.links}</div> : null}
</div>;
}
@@ -1353,7 +1353,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
{this.contextsSubMenu}
- {this.backlinksSubMenu}
+ {this.linksSubMenu}
{this.inkSubMenu}