diff options
| author | bobzel <zzzman@gmail.com> | 2022-11-10 20:50:09 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-11-10 20:50:09 -0500 |
| commit | fd19fa3539f9ecca4f2eed7f1fe1c12331902969 (patch) | |
| tree | 406797fac3f455d8a2cf025432c0d888f751593c /src/client/views/nodes/trails | |
| parent | 90bf9ea9e32ed695a36d0334e99fd859bbe51c15 (diff) | |
fixed scriptingBox to always have this and self bound properly. fixed presElement to allow group with up
Diffstat (limited to 'src/client/views/nodes/trails')
| -rw-r--r-- | src/client/views/nodes/trails/PresElementBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/PresElementBox.tsx b/src/client/views/nodes/trails/PresElementBox.tsx index 5d14a0e9a..4469be488 100644 --- a/src/client/views/nodes/trails/PresElementBox.tsx +++ b/src/client/views/nodes/trails/PresElementBox.tsx @@ -502,7 +502,7 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps>() { </Tooltip> ); } - if (this.indexInPres === 0) { + if (this.indexInPres !== 0) { items.push( <Tooltip key="arrow" title={<div className="dash-tooltip">{activeItem.groupWithUp ? 'Ungroup' : 'Group with up'}</div>}> <div |
