matteodem / meteor-easy-search

Easy-to-use search for Meteor with Blaze Components
MIT License
437 stars 68 forks source link

easy-search breaks blaze ? #511

Closed ilan-schemoul closed 8 years ago

ilan-schemoul commented 8 years ago

When the package is added the reactivity doesnt work anymore in Blaze. This basic helper Template.flow.helpers({ worksheets() { return Worksheets.find(); } }); at first return an empty array (data isnt yet loaded) and right after the full data... But whenever I add easy-search my template in {{#each worsheet as worksheets}} is never updated and stay with the first version give by the worksheets helper and so the template haven't any data. So this package definitely breaks reactivity in blaze in my app...

ilan-schemoul commented 8 years ago

The workaround seems to specifically update easy:search with meteor update easy:search because by default an older version than the latest one is downloaded via meteor add...

matteodem commented 8 years ago

Please provide reproduction in form of a repository.