You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
This commit: 4dc07ff introduced a new bug: this.model is null in a collection view's initialize method.
I believe this is because options[type] is nullified: it works fine for views, as their constructor calls obj.ctor which calls setModel, but collection view doesn't have a constructor - so it doesn't call setModel (at least not before initialize), and therefore this.model is null (this._model is defined of course..)
The text was updated successfully, but these errors were encountered:
This commit: 4dc07ff introduced a new bug: this.model is null in a collection view's initialize method.
I believe this is because
options[type]
is nullified: it works fine for views, as their constructor calls obj.ctor which calls setModel, but collection view doesn't have a constructor - so it doesn't call setModel (at least not before initialize), and therefore this.model is null (this._model
is defined of course..)The text was updated successfully, but these errors were encountered: