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 f91a3d7 commit f6dee0aCopy full SHA for f6dee0a
packages/app-backend-vue3/src/components/tree.ts
@@ -94,7 +94,9 @@ export class ComponentWalker {
94
return list.filter(child => !isBeingDestroyed(child) && !child.type.devtools?.hide)
95
}
96
97
- private captureId (instance) {
+ private captureId (instance): string {
98
+ if (!instance) return null
99
+
100
// instance.uid is not reliable in devtools as there
101
// may be 2 roots with same uid which causes unexpected
102
// behaviour
0 commit comments