gterrono / houston

A zero-config, Django Admin-like admin for Meteor

Home Page:https://atmospherejs.com/houston/admin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

LukasDeco opened this issue · 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?

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 :)

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