diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-12 13:13:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-12 13:13:35 -0400 |
| commit | c38249e8df315272783cf95439e62b4871a42502 (patch) | |
| tree | d3f9b89b33d216c4ca5d9b522b93b7b2831a5520 /src/client/views/collections/CollectionLinearView.tsx | |
| parent | e976cf57176b5ba8d758ccfd63d443c291781b4f (diff) | |
| parent | 56ae02ffc13d69f6e79f327ea99d154f03e0fd34 (diff) | |
Merge pull request #553 from browngraphicslab/acls_uv
A bunch of changes
Diffstat (limited to 'src/client/views/collections/CollectionLinearView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionLinearView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionLinearView.tsx b/src/client/views/collections/CollectionLinearView.tsx index 3cf46dbed..e1b07077e 100644 --- a/src/client/views/collections/CollectionLinearView.tsx +++ b/src/client/views/collections/CollectionLinearView.tsx @@ -119,7 +119,7 @@ export class CollectionLinearView extends CollectionSubView(LinearDocument) { // transform: this.props.Document.linearViewIsExpanded ? "" : "rotate(45deg)" }} onPointerDown={e => e.stopPropagation()} > - <p>+</p> + <p>{BoolCast(this.props.Document.linearViewIsExpanded) ? "–" : "+"}</p> </label>; return <div className="collectionLinearView-outer"> |
