Disable back button on smart-select

How to disable or hide back button on smart-select framework7 v2 ?

Thanks.

You can pass empty smartSelectBackTemplate in app parameters http://framework7.io/docs/init-app.html

@nolimits4web By the way, I used Smart Select popup.
So I’m using smartSelectPopupCloseTemplate : "" on framework7 initiation for this case, but it’s still not working.

// Init App
var app = new Framework7({
	root: '#app',
	theme: theme,
  	routes: routes,
  	animatePages: false,
  	smartSelectPopupCloseTemplate: '',
  	smartSelectBackOnSelect: true,
});

It seems you pass nothing for smartSelectPopupCloseTemplate ? Is it correct behaviour framework 7 excepts ?