diff options
Diffstat (limited to 'src/state/models/root-store.ts')
-rw-r--r-- | src/state/models/root-store.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/state/models/root-store.ts b/src/state/models/root-store.ts index 26f947c56..54578b4a5 100644 --- a/src/state/models/root-store.ts +++ b/src/state/models/root-store.ts @@ -67,6 +67,7 @@ export class RootStoreModel { me: this.me.serialize(), nav: this.nav.serialize(), onboard: this.onboard.serialize(), + shell: this.shell.serialize(), } } @@ -84,6 +85,9 @@ export class RootStoreModel { if (hasProp(v, 'onboard')) { this.onboard.hydrate(v.onboard) } + if (hasProp(v, 'shell')) { + this.shell.hydrate(v.shell) + } } } |