Skip to content

Commit 7588586

Browse files
authored
Minor fixes following build from scratch (#328)
Co-authored-by: Frédéric Collonval <[email protected]>
1 parent d535b0a commit 7588586

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/lexical/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"lodash-es": "^4.17.21",
7272
"react": "^18.2.0",
7373
"react-dom": "^18.2.0",
74+
"react-json-tree": "0.19.0",
7475
"styled-components": "^5.3.10"
7576
},
7677
"devDependencies": {

packages/react/src/jupyter/ipywidgets/libembed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async function renderManager(
9393
if (!valid) {
9494
throw new Error(`View state has errors: ${view_validate.errors}`);
9595
}
96-
const model_id: string = widgetViewObject.model_id;
96+
const model_id: string = (widgetViewObject as any).model_id;
9797
const model = models.find((item) => item.model_id == model_id);
9898
if (model !== undefined && viewtag.parentElement !== null) {
9999
const prev = viewtag.previousElementSibling;

0 commit comments

Comments
 (0)