Skip to content

Commit b6f6aba

Browse files
author
Jerry Bruwes
committed
modified: index.ts
1 parent 79fb601 commit b6f6aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default (
7878
const leaves = computed(() => getLeaves({ value }));
7979

8080
const atlas = computed(
81-
() => new Map(leaves.value.map((leaf) => [leaf[keyId], leaf])),
81+
() => new Map(leaves.value.map((leaf) => [leaf[keyId] as string, leaf])),
8282
);
8383

8484
const add = (pId: string) => {

0 commit comments

Comments
 (0)