fix value explorer not wrapped in with_code_execution

This commit is contained in:
Dmitry Vasilev
2023-11-21 03:10:33 +08:00
parent 5c81f50348
commit 8c3cd0f125

View File

@@ -30,7 +30,7 @@ export class ValueExplorer {
this.scroll_to_element = scroll_to_element
this.on_escape = on_escape
event_target.addEventListener('keydown', (e) => {
event_target.addEventListener('keydown', e => with_code_execution(() => {
/*
Right -
@@ -154,7 +154,7 @@ export class ValueExplorer {
}
}
}
})
}))
}
get_node_data(path, node_data = this.node_data) {