Browse Source

fix(gui-v2): fix suggestion type

pull/2998/head
Wing-Kam Wong 2 years ago
parent
commit
1d094d690b
  1. 2
      packages/nc-gui-v2/utils/NcAutocompleteTree.ts

2
packages/nc-gui-v2/utils/NcAutocompleteTree.ts

@ -8,7 +8,7 @@ interface Node {
export class NcAutocompleteTree {
trie: Record<string, any>
suggestions: string[]
suggestions: Record<string, any>[]
constructor() {
this.trie = {}

Loading…
Cancel
Save