File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
react/src/jupyter/ipywidgets Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 71
71
"lodash-es" : " ^4.17.21" ,
72
72
"react" : " ^18.2.0" ,
73
73
"react-dom" : " ^18.2.0" ,
74
+ "react-json-tree" : " 0.19.0" ,
74
75
"styled-components" : " ^5.3.10"
75
76
},
76
77
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ async function renderManager(
93
93
if ( ! valid ) {
94
94
throw new Error ( `View state has errors: ${ view_validate . errors } ` ) ;
95
95
}
96
- const model_id : string = widgetViewObject . model_id ;
96
+ const model_id : string = ( widgetViewObject as any ) . model_id ;
97
97
const model = models . find ( ( item ) => item . model_id == model_id ) ;
98
98
if ( model !== undefined && viewtag . parentElement !== null ) {
99
99
const prev = viewtag . previousElementSibling ;
You can’t perform that action at this time.
0 commit comments