Webix duplicates content on browser back or forward event

I have some content in my webix datatable. Within the application the content works fine with navigations. When I use the browser back/forward button I see the datatable duplicating. This is my webix code:

 webix.ready(function(){
        webix.ui({
          container:"div",
          view:"datatable",
          columns:[
            { id:"username",
            { id:"email",	header:"Email Address", minWidth:700, fillspace:1}
          ],
          autoheight:true,
          url:"urlToData.json"
        });
      });

Can you please provide more details? I’m afraid I can’t represent this issue without any additional information.

Sorry I figured out what the problem was yesterday and for anyone experiencing the same thing they should check their turbolinks and if they’re using that it and it’s global it’ll be load the content twice.