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/CollectionFreeFormDocumentView.tsx | |
parent | 589f07ea018368057fe80b136c3fd2153efe0fcb (diff) |
more progress in fixing & simplifying active/selected stuff
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index e96fc088e..1fda4cc5e 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -49,7 +49,7 @@ export class CollectionFreeFormDocumentView extends DocComponent<CollectionFreeF @computed get dataProvider() { return this.props.dataProvider?.(this.props.Document, this.props.replica); } @computed get sizeProvider() { return this.props.sizeProvider?.(this.props.Document, this.props.replica); } - styleProvider = (doc: Doc | undefined, props: Opt<DocumentViewProps | FieldViewProps>, property: string) => { + styleProvider = (doc: Doc | undefined, props: Opt<DocumentViewProps>, property: string) => { if (property === StyleProp.Opacity && doc === this.layoutDoc) return this.Opacity; // only change the opacity for this specific document, not its children return this.props.styleProvider?.(doc, props, property); } |