diff options
author | bobzel <zzzman@gmail.com> | 2021-03-29 22:37:58 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-29 22:37:58 -0400 |
commit | 96fd7e51d56bdd95a9f54d61090f45cd0dd17e6a (patch) | |
tree | 42076fa7bc69bb00002773c4fc83c1fe22c1c6ff /src/client/views/nodes/LinkBox.tsx | |
parent | 589f07ea018368057fe80b136c3fd2153efe0fcb (diff) |
more progress in fixing & simplifying active/selected stuff
Diffstat (limited to 'src/client/views/nodes/LinkBox.tsx')
-rw-r--r-- | src/client/views/nodes/LinkBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkBox.tsx b/src/client/views/nodes/LinkBox.tsx index f542652d0..41085ffff 100644 --- a/src/client/views/nodes/LinkBox.tsx +++ b/src/client/views/nodes/LinkBox.tsx @@ -17,7 +17,7 @@ const LinkDocument = makeInterface(documentSchema); export class LinkBox extends ViewBoxBaseComponent<FieldViewProps, LinkDocument>(LinkDocument) { public static LayoutString(fieldKey: string) { return FieldView.LayoutString(LinkBox, fieldKey); } render() { - return <div className={`linkBox-container${this.active() ? "-interactive" : ""}`} + return <div className={`linkBox-container${this.isContentActive() ? "-interactive" : ""}`} style={{ background: this.props.styleProvider?.(this.props.Document, this.props, StyleProp.BackgroundColor) }} > <CollectionTreeView {...this.props} |