I also have a <MeteorListView> where the renderRow method includes references to currentUser.
However, the dataSource supplied to by <MeteorListView> only references the Mongo live query data. Since it doesn't reference Meteor.user(), only changes to the subscription data will cause a re-render.
Can we start a discussion about this?
I offer one solution- the internal dataSource could be altered to invalidate when Meteor.user() changes?
I have some basic boilerplate code --
I also have a
<MeteorListView>
where therenderRow
method includes references tocurrentUser
.However, the
dataSource
supplied to by<MeteorListView>
only references the Mongo live query data. Since it doesn't referenceMeteor.user()
, only changes to the subscription data will cause a re-render.Can we start a discussion about this?
I offer one solution- the internal
dataSource
could be altered to invalidate whenMeteor.user()
changes?