diff options
author | bobzel <zzzman@gmail.com> | 2021-04-05 15:01:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-04-05 15:01:13 -0400 |
commit | 27d385f999d66eba973a5beccaa4dd239eb6c57b (patch) | |
tree | d9bfd9232b6e2f27a127f763d4593894dbe4dc47 /src | |
parent | 3bec3189fcd3a0a1410d625c73f0e219631dbf11 (diff) |
set height for doc filters in property view.
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index 9c1b8e593..863d6fd73 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -949,7 +949,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { </div> { !this.openFilters ? (null) : - <div className="propertiesView-filters-content"> + <div className="propertiesView-filters-content" style={{ height: this.docHeight() }}> <DocumentView Document={this.filterDoc.currentFilter as Doc} DataDoc={undefined} |