diff options
author | bobzel <zzzman@gmail.com> | 2021-09-01 15:19:38 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-09-01 15:19:38 -0400 |
commit | f3a3536ea4b31cf93748490f4b46a56c4775565f (patch) | |
tree | 149396624745a1ab5652f03750a6e62f2a4e745f /src/client/views/PropertiesButtons.tsx | |
parent | be825152070aa609817a2df7880e9cc377f7cfc1 (diff) |
fixed toggleDetail() func to work.
Diffstat (limited to 'src/client/views/PropertiesButtons.tsx')
-rw-r--r-- | src/client/views/PropertiesButtons.tsx | 2 |
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; } |