Skip to content

Commit 205bd4e

Browse files
committedNov 11, 2024·
fix(kit): add null-safety check on process instance props, close #688
1 parent 0cf7f09 commit 205bd4e

File tree

1 file changed

+2
-2
lines changed
  • packages/devtools-kit/src/core/component/state

1 file changed

+2
-2
lines changed
 

‎packages/devtools-kit/src/core/component/state/process.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function processProps(instance: VueAppInstance) {
6363
const props: InspectorState[] = []
6464
const propDefinitions = instance?.type?.props
6565

66-
for (const key in instance.props) {
66+
for (const key in instance?.props) {
6767
const propDefinition = propDefinitions ? propDefinitions[key] : null
6868
const camelizeKey = camelize(key)
6969
props.push({
@@ -96,7 +96,7 @@ function processProps(instance: VueAppInstance) {
9696
*/
9797
function processState(instance: VueAppInstance) {
9898
const type = instance.type
99-
const props = type.props
99+
const props = type?.props
100100
const getters
101101
= type.vuex
102102
&& type.vuex.getters

0 commit comments

Comments
 (0)
Please sign in to comment.