diff options
| author | bobzel <zzzman@gmail.com> | 2025-03-23 20:51:21 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-03-23 20:51:21 -0400 |
| commit | 288a0095bf7e54b0c1765ba994f5f203fd8507cf (patch) | |
| tree | 7de076c7a6678ec343631c05f4c7fd21c10f31a6 /src/client/views/collections/CollectionTreeView.tsx | |
| parent | 705975eb43e7904c62e7e847478f6d0dac60d443 (diff) | |
fixed more typing errors. fixed updateBullets to not generate error when part of selection is not on a list.
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index b7f49ac20..1960e12bd 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -241,7 +241,7 @@ export class CollectionTreeView extends CollectionSubView<Partial<collectionTree ); } - onKey = (e: React.KeyboardEvent /* , textBox: FormattedTextBox */) => { + onKey = (e: KeyboardEvent /* , textBox: FormattedTextBox */) => { if (this.outlineMode && e.key === 'Enter') { e.stopPropagation(); this.makeTextCollection(this.treeChildren); |
