diff options
| author | bobzel <zzzman@gmail.com> | 2023-12-12 14:39:09 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-12-12 14:39:09 -0500 |
| commit | 85c09a9e5df77ad00f3e00a2fb1e0f2e3449f97d (patch) | |
| tree | 61aa82a95bdd923af1a48c6968aa8a6135f4cf85 /src/client/views/ComponentDecorations.tsx | |
| parent | 77234b8f1dd2cad90cdf94eaefab55de691305c3 (diff) | |
cleaned up SelectionManager. fixed schema view
Diffstat (limited to 'src/client/views/ComponentDecorations.tsx')
| -rw-r--r-- | src/client/views/ComponentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/ComponentDecorations.tsx b/src/client/views/ComponentDecorations.tsx index 0a34b283b..ca4e5f2bc 100644 --- a/src/client/views/ComponentDecorations.tsx +++ b/src/client/views/ComponentDecorations.tsx @@ -8,7 +8,7 @@ export class ComponentDecorations extends React.Component<{ boundsTop: number; b static Instance: ComponentDecorations; render() { - const seldoc = SelectionManager.Views().lastElement(); + const seldoc = SelectionManager.Views.lastElement(); return seldoc?.ComponentView?.componentUI?.(this.props.boundsLeft, this.props.boundsTop) ?? null; } } |
