Skip to content

Commit

Permalink
Update PageEditor.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 15, 2024
1 parent b070a9a commit 0bc934f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/project-editor/features/page/PageEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { computed, runInAction, makeObservable } from "mobx";
import { computed, runInAction, makeObservable, observable } from "mobx";
import { observer } from "mobx-react";
import { IEezObject } from "project-editor/core/object";
import { TreeObjectAdapter } from "project-editor/core/objectAdapter";
Expand Down Expand Up @@ -96,7 +96,7 @@ export class PageTabState extends FlowTabState {
super(object as Flow);

makeObservable(this, {
//_transform: observable,
_transform: observable,
transform: computed,
frontFace: computed
});
Expand Down

0 comments on commit 0bc934f

Please sign in to comment.