diff options
author | bobzel <zzzman@gmail.com> | 2022-05-20 12:51:51 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-05-20 12:51:51 -0400 |
commit | 6df80c76b4046ef1ac9e98e52f766dfaf540ead2 (patch) | |
tree | 121725b7d403deba1b2f5ae92612f141a803115e /src/client/views/nodes/ComparisonBox.tsx | |
parent | 51199aae80013073d4f1a0749a36051dcee591c1 (diff) |
removed enumerables field stuff which was hacky and never used. cleaned up some of currentUserUtils initialiazation. fixed treeView sorting for 'none" which fixes problem with slide template.
Diffstat (limited to 'src/client/views/nodes/ComparisonBox.tsx')
-rw-r--r-- | src/client/views/nodes/ComparisonBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ComparisonBox.tsx b/src/client/views/nodes/ComparisonBox.tsx index 49cd39f43..5ea6d567a 100644 --- a/src/client/views/nodes/ComparisonBox.tsx +++ b/src/client/views/nodes/ComparisonBox.tsx @@ -76,7 +76,7 @@ export class ComparisonBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatabl const clearButton = (which: string) => { return <div className={`clear-button ${which}`} onPointerDown={e => e.stopPropagation()} // prevent triggering slider movement in registerSliding - onClick={e => this.clearDoc(e, `compareBox-${which}`)}> + onClick={e => this.clearDoc(e, which)}> <FontAwesomeIcon className={`clear-button ${which}`} icon={"times"} size="sm" /> </div>; }; |