fix(client): add missing session package for Bert.alert()
Some checks failed
build-image / build (push) Failing after 3m10s
Some checks failed
build-image / build (push) Failing after 3m10s
themeteorchef:bert's Bert.alert() calls Session.set('bertAlert', ...)
internally, but the session package was never declared in
.meteor/packages — only reactive-var/tracker were. Every Bert.alert()
call (subscribe/unsubscribe success and error paths, ViewSubscription,
SubscriptionEditor) threw "ReferenceError: Session is not defined",
which crashed the DDP method result callback and silently ate whatever
UI update was supposed to happen next.
This commit is contained in:
parent
775461f7b2
commit
685af89f20
2 changed files with 2 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ mobile-experience@1.1.2 # Packages for a great mobile UX
|
||||||
mongo@2.0.3 # The database Meteor supports right now
|
mongo@2.0.3 # The database Meteor supports right now
|
||||||
reactive-var@1.0.13 # Reactive variable for tracker
|
reactive-var@1.0.13 # Reactive variable for tracker
|
||||||
tracker@1.3.4 # Meteor's client-side reactive programming library
|
tracker@1.3.4 # Meteor's client-side reactive programming library
|
||||||
|
session@1.2.3 # Reactive Session var, required by themeteorchef:bert's Bert.alert()
|
||||||
|
|
||||||
standard-minifier-css@1.9.3 # CSS minifier run for production mode
|
standard-minifier-css@1.9.3 # CSS minifier run for production mode
|
||||||
standard-minifier-js@3.0.0 # JS minifier run for production mode
|
standard-minifier-js@3.0.0 # JS minifier run for production mode
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,7 @@ retry@1.1.1
|
||||||
reywood:publish-composite@1.6.0
|
reywood:publish-composite@1.6.0
|
||||||
routepolicy@1.1.2
|
routepolicy@1.1.2
|
||||||
service-configuration@1.3.5
|
service-configuration@1.3.5
|
||||||
|
session@1.2.3
|
||||||
sha@1.0.10
|
sha@1.0.10
|
||||||
shell-server@0.6.1
|
shell-server@0.6.1
|
||||||
simple:json-routes@3.0.0
|
simple:json-routes@3.0.0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue