aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesButtons.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-09-01 15:19:38 -0400
committerbobzel <zzzman@gmail.com>2021-09-01 15:19:38 -0400
commitf3a3536ea4b31cf93748490f4b46a56c4775565f (patch)
tree149396624745a1ab5652f03750a6e62f2a4e745f /src/client/views/PropertiesButtons.tsx
parentbe825152070aa609817a2df7880e9cc377f7cfc1 (diff)
fixed toggleDetail() func to work.
Diffstat (limited to 'src/client/views/PropertiesButtons.tsx')
-rw-r--r--src/client/views/PropertiesButtons.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx
index 86ef9ab62..dcab9bc1e 100644
--- a/src/client/views/PropertiesButtons.tsx
+++ b/src/client/views/PropertiesButtons.tsx
@@ -134,7 +134,7 @@ export class PropertiesButtons extends React.Component<{}, {}> {
docView.noOnClick();
switch (e.target.value) {
case "enterPortal": docView.makeIntoPortal(); break;
- case "toggleDetail": docView.toggleDetail(); break;
+ case "toggleDetail": docView.setToggleDetail(); break;
case "linkInPlace": docView.toggleFollowLink("inPlace", true, false); break;
case "linkOnRight": docView.toggleFollowLink("add:right", false, false); break;
}