Skip to content

Commit 84fe6c6

Browse files
fix(overmind-devtools): fix issue with nested values not expanding
1 parent 6f26265 commit 84fe6c6

File tree

1 file changed

+1
-1
lines changed
  • packages/node_modules/overmind-devtools/src/components/ValueInspector

1 file changed

+1
-1
lines changed

packages/node_modules/overmind-devtools/src/components/ValueInspector/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const ValueInspector: SFC<Props> = ({ value, small }) => {
1010
const [expandedPaths, setExpandedPaths] = useState([])
1111

1212
function onToggleExpand(path: string[]) {
13-
const pathString = path.join('')
13+
const pathString = path.join('.')
1414

1515
if (expandedPaths.includes(pathString)) {
1616
setExpandedPaths(

0 commit comments

Comments
 (0)