We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a4933 commit c06a0b1Copy full SHA for c06a0b1
core/src/comps/NestedOpen.tsx
@@ -48,7 +48,7 @@ export const NestedOpen = <T extends object>(props: NestedOpenProps<T>) => {
48
return (
49
<span {...reset}>
50
{showArrow && <Arrow style={arrowStyle} expandKey={expandKey} {...compProps} />}
51
- {(keyName || typeof keyName === 'number') && <KayName keyName={keyName} />}
+ {(keyName || typeof keyName === 'number') && <KayName {...compProps} />}
52
<SetComp value={initialValue} keyName={keyName!} />
53
<MapComp value={initialValue} keyName={keyName!} />
54
<BracketsOpen isBrackets={isArray || isMySet} {...compProps} />
0 commit comments