houston icon indicating copy to clipboard operation
houston copied to clipboard

Navigation and main area show collections and their record numbers but clicking on them does nothing

Open LukasDeco opened this issue 6 years ago • 2 comments

This is the error I get: TypeError: Meteor.autorun is not a function at Object.Meteor.subscribeWithPagination (tmeasday_paginated-subscription.js?hash=1dd8722609ac26b4a8d4e83b40fec2f492b1ea8f:93) at setup_collection (router.coffee:21) at Object.subs (router.coffee:64) at ctor.options.waitOn (router.coffee:37) at iron_router.js?hash=f37bffce0ac91b7fda73e7fed6ffa6ad745b41fc:435 at Array.forEach ()

It shows collections and document numbers, but clicking on them does nothing and yields this error. I read somewhere that Meteor.autorun is deprecated?

LukasDeco avatar Aug 05 '18 15:08 LukasDeco

Yes, it uses Meteor.autorun which has been removed, it is now called Tracker.autorun. You can fix this by doing on the client on startup: Meteor.autorun = Tracker.autorun; And the admin pannel will work again :)

lucnat avatar Feb 12 '19 10:02 lucnat

Yes, it uses Meteor.autorun which has been removed, it is now called Tracker.autorun. You can fix this by doing on the client on startup: Meteor.autorun = Tracker.autorun; And the admin pannel will work again :)

Yay this worked, thanks

listcrawler-houston avatar Apr 27 '24 11:04 listcrawler-houston