diff options
| author | bobzel <zzzman@gmail.com> | 2022-10-13 13:17:31 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-10-13 13:17:31 -0400 |
| commit | a40b276c3f6db4112e8c13f7bc47cf5e63772ef2 (patch) | |
| tree | cf852ca25a2f8130205184112251fdc94f8aa7a0 /src/client/views/collections/TreeView.tsx | |
| parent | 6fcfb2a70c37c85c69b6341ff58948835185b46c (diff) | |
fixed copying text when a document is selected. fixed tree view shifting when editing a line that is too long.
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index 14563f990..409b615f4 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -629,7 +629,7 @@ export class TreeView extends React.Component<TreeViewProps> { } else if (this.treeViewExpandedView === 'fields') { return ( <ul key={this.doc[Id] + this.doc.title}> - <div style={{ display: 'inline-block' }}>{this.expandedField}</div> + <div>{this.expandedField}</div> </ul> ); } |
