Update client.js

This commit is contained in:
Sébastien Chopin 2017-04-05 21:25:44 +02:00 committed by GitHub
parent 17db23f45f
commit 3e7d0a19ed
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ function render (to, from, next) {
if (typeof Component.options.validate !== 'function') return if (typeof Component.options.validate !== 'function') return
isValid = Component.options.validate({ isValid = Component.options.validate({
params: to.params || {}, params: to.params || {},
query : to.query || {}<%= (store ? ', store: store' : '') %> query : to.query || {}<%= (store ? ', store: context.store' : '') %>
}) })
}) })
if (!isValid) { if (!isValid) {