diff options
author | bobzel <zzzman@gmail.com> | 2024-09-10 14:54:44 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-10 14:54:44 -0400 |
commit | b9f15c10e4cfa1288e176cbd1d312c628c5998ad (patch) | |
tree | 790bbbe0c8b71b561e6ca5a8b29a0feb702bcf1c /src/client/views/StyleProvider.tsx | |
parent | adc87fe2ffc8d8d8c6a71a368b060f0ad14de2ca (diff) |
moved TagsView up into DocumentView so that one row of tags will be visible. fixed setting pixel size of images to resize annotations so they don't appear to change. added vert/horiz centering for stacking views. fixed pres box to not have scroll bars. fixed resizing properties panel.
Diffstat (limited to 'src/client/views/StyleProvider.tsx')
-rw-r--r-- | src/client/views/StyleProvider.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/StyleProvider.tsx b/src/client/views/StyleProvider.tsx index 76cb119ab..513953d17 100644 --- a/src/client/views/StyleProvider.tsx +++ b/src/client/views/StyleProvider.tsx @@ -365,7 +365,7 @@ export function DefaultStyleProvider(doc: Opt<Doc>, props: Opt<FieldViewProps & </Tooltip> ); }; - const tags = () => props?.DocumentView?.() && CollectionFreeFormDocumentView.from(props.DocumentView()) ? <TagsView View={props.DocumentView()}/> : null; + const tags = () => props?.DocumentView?.() ? <TagsView View={props.DocumentView()}/> : null; return ( <> {paint()} |