Skip to content

Commit 595097c

Browse files
committed
1 parent 0ab68a7 commit 595097c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/project-editor/lvgl/widgets/Base.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ export class LVGLWidget extends Widget {
15751575

15761576
const project = ProjectEditor.getProject(this);
15771577

1578-
if (runtime.wasm.assetsMap?.flowIndexes.length > 0) {
1578+
if (runtime.wasm.assetsMap?.flows.length > 0) {
15791579
const page = getAncestorOfType(
15801580
this,
15811581
ProjectEditor.PageClass.classInfo

packages/project-editor/lvgl/widgets/UserWidget.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ export class LVGLUserWidgetWidget extends LVGLWidget {
456456

457457
const savedUserWidgetContext = runtime.lvglCreateContext;
458458

459-
if (runtime.wasm.assetsMap?.flowIndexes.length > 0) {
459+
if (runtime.wasm.assetsMap?.flows.length > 0) {
460460
const flow =
461461
runtime.wasm.assetsMap.flows[savedUserWidgetContext.pageIndex];
462462
if (flow) {

0 commit comments

Comments
 (0)