fix observability regression, from 5c839998

This commit is contained in:
Tom Moor
2023-09-09 23:41:48 -04:00
parent 9602d09964
commit ac068c0c07
13 changed files with 29 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { action } from "mobx";
import { action, observable } from "mobx";
import User from "./User";
import Model from "./base/Model";
@@ -9,8 +9,10 @@ class View extends Model {
firstViewedAt: string;
@observable
lastViewedAt: string;
@observable
count: number;
user: User;