This commit is contained in:
Nolan Lawson 2018-01-17 19:53:12 -08:00
parent f416413b7e
commit 31244a5f8e
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ import { Store } from 'svelte/store.js'
import { mark, stop } from '../_utils/marks'
class VirtualListStore extends Store {
constructor(obj) {
super(obj)
constructor(state) {
super(state)
this._batches = {}
}