kadirahq / flow-router

Carefully Designed Client Side Router for Meteor
MIT License
1.09k stars 195 forks source link

setQueryParams bug #675

Open stepanlylak opened 7 years ago

stepanlylak commented 7 years ago
action: function(params, queryParams) {    
        FlowRouter.withReplaceState(function() {
            FlowRouter.setQueryParams({'page':1, 'limit': 10});
            console.log(FlowRouter.current().queryParams)
        });
        BlazeLayout.render("et_layout", {template: "et_log"});
    }

after load FlowRouter.current().queryParams return {'page':1, 'limit': 10} but url in browser without query!